python中怎么定义函数的返回值
函数返回值简介
函数需要先定义后调用,函数体中return语句的结果就是返回值。如果一个函数没有reutrn语句,其实它有一个隐含的return语句,返回值是None,类型也是'NoneType'。.
def func(x,y): num = x + y return print(func(1,2)) #上面代码的输出结果为:None
return语句的作用:
结束函数调用、返回值
指定返回值与隐含返回值:
1、函数体中return语句有指定返回值时返回的就是其值
2、函数体中没有return语句时,函数运行结束会隐含返回一个None作为返回值,类型是NoneType,与return 、return None 等效,都是返回 None。
推荐学习《python教程》。
来源:PY学习网:原文地址:https://www.py.cn/article.html