python函数没有返回值吗

2,768次阅读
没有评论

python函数没有返回值吗

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自学、交流公益平台!

神龙|纯净稳定代理IP免费测试>>>>>>>>天启|企业级代理IP免费测试>>>>>>>>IPIPGO|全球住宅代理IP免费测试

相关文章:

版权声明:Python基础教程2022-12-07发表,共计373字。
新手QQ群:570568346,欢迎进群讨论 Python51学习