为什么这个函数不能调用

时间:2019-07-16 13:13:42

标签: python nonetype

我在这里关注本教程: https://www.youtube.com/watch?v=FsAPt_9Bf3U

此代码显然为他运行,为什么对我却不运行?:

def outer_function():
    message = 'Hi'

    def inner_function():
        print(message)

    return inner_function()

my_func = outer_function()

my_func()

我很困惑,如果我将()从my_func上删除,它将运行。

0 个答案:

没有答案