标签:对象 结束 元组 *args += 输出 return turn 作用
def f():
print(‘ok‘)
return ‘abc‘
return的作用:
一.结束函数
二.返回某个对象
def add(*args):
sum=0
for i in args:
sum+=i
print(sum)
a=add(1,4)
print(a)
输出结果:
5
None
注意:
1.函数里如果没有return,会默认返回一个None。
2.如果return多个对象,那么python会将多个对象封装成一个元组返回。
标签:对象 结束 元组 *args += 输出 return turn 作用
原文地址:https://www.cnblogs.com/zd37/p/11562103.html