文章摘要:python怎么让函数不返回none python函数可以不返回值吗
python中使用return语句让函数不返回none,具体方法如下: return语句的语法: return […]
python中使用return语句让函数不返回none,具体方法如下:
return语句的语法:
return [返回值]
使用方法:
def add(a,b):
c = a + b
return c #省略return语句将返回空值None
c = add(3,4)
print(c)
输出结果为:
7