标签:weight print 多个 返回值 默认 one python函数 nbsp ret
函数遇到return立即结束;
调用完函数之后,返回计算的结果;
函数没有返回值的时候,默认返回none
def plus(a,b):
return a+b
c = a+b
return c
如果函数return多个值的话,它会把这多个值放在一个元组里
score1 = 50
score2 = 90
def echo():
return score1,score2
print(echo())
标签:weight print 多个 返回值 默认 one python函数 nbsp ret
原文地址:http://www.cnblogs.com/zhlan/p/6973713.html