cat971216 发表于 2020-9-29 11:13:52

第19课关于hello()函数的返回,赋值和print

课上和课后题小甲鱼都举了一个hello()的例子,但对于是否返回还是不太明白。代码如下:

>>> def hello():
        print("hello world")

       
>>> hello()
hello world
>>> temp = hello()
hello world
>>> temp
>>> print(temp)
None


我的理解是:

1)
>>>hello()      这一句有返回内容是因为调用了函数,函数运行中要求打印,所以打印了print的内容

2)
>>>temp = hello()         这一句课上一句原理相同;但为什么赋值也会调用函数呢?赋值操作不是只代表赋值吗,为什么也会运行指令?比如:

>>> temp = print("123")
123

这一句中也是在赋值时有print指令,所以运行print,和hello()应该是同理。


3)
>>> temp
为什么只输入temp的时候,hello()不会被调用,print("hello world")不会运行呢?

4)
>>>print(temp)
这一句,print(temp)为什么不会调用函数?
如果temp = hello(), 那么print(temp) == print(hello())是否应该成立?但:

>>> print(hello())
hellp world
None

结果确实是不一样的。

被print,返回,赋值这几个操作的排列组合搞晕了……求解!谢谢!

jackz007 发表于 2020-9-29 11:32:56

本帖最后由 jackz007 于 2020-9-29 11:34 编辑

      hello() 是一个无返回值的函数,其返回值一律是 None,所以,temp = hello() 的执行结果,自然是 temp = None。

linke.zhanghu 发表于 2020-9-29 11:57:20

首先;任何函数都一定是有一个返回值的.只不过我们没有定义的话, 返回值默认为None
也就是说:函数hello()的完整写法应该是
def hello():
    print('hello world')
    return None
最后一行我们没写,但是系统会默认这么运行
返回值只是一个数据,所以如果想要得到返回值,首先你需要运行函数,然后给返回值安排一个变量名
temp = hello()# 这里实际上是获取函数的返回值,也就是那个None 换句话说这里实质上是 temp = None
但是这个返回值是在函数运行后才得到.所以函数内部的print是一定会打印的.
所以你才会看到temp = hello() 会打印 hello world 执行temp 会看到 None
因为运行了函数,并且把返回值None给了temp 所以当单数执行temp的时候,当然会打印 None了.这时候的temp只是一个变量而已,他和函数已经没关系了.
另外;
temp = print('123')
这句代码的意思是 首先执行一下打印 所以你会看到 123 的输出,但是print函数的返回值也是None
如果你在执行以下temp你会发现打印的也是None


linke.zhanghu 发表于 2020-9-29 11:58:37

另外;你无需在意print 那只是一个打印而已 代码无论执行到什么阶段只要遇到print就一定会打印内容
页: [1]
查看完整版本: 第19课关于hello()函数的返回,赋值和print