您现在的位置是:课程教程文章

python函数有返回值吗

2023-12-18 21:54课程教程文章 人已围观

Python的函数可以有返回值,也可以没有返回值。函数需要先定义后调用,函数体中 return 语句的结果就是返回值。如果一个函数没有 reutrn 语句,其实它有一个隐含的 return 语句,返回值是 None,类型也是 'NoneType'。

例如

def showplus(x):
    print(x)
    return x + 1
     
num = showplus(6)
add = num + 2
print(add)

输出结果为

6
9

隐含return的情况

def showplus(x):
    print(x)
 
num = showplus(6)
print(num)
print(type(num))

输出结果

6
None
<class 'NoneType'>

更多学习内容,请点击Python学习网。

课程教程:python函数有返回值吗

上一篇:cmd中怎么退出python

下一篇:没有了

站点信息

  • 文章统计篇文章