标签:函数调用 none 形式 res pass 没有 title max foo
函数名()
就会调用函数,会执行函数体代码,直到碰到return或者完函数体所有代码
运行完函数体内代码,如果没有return就会返回none
def foo():
pass
print(foo())
def max_self(x,y):
if x>y:
return x
else:
return y
\# 1.
max_self(1,2)
\# 2.
res = max_self(1,2)*12
\# 3.
max_self(max_self(20000,30000),40000)
标签:函数调用 none 形式 res pass 没有 title max foo
原文地址:https://www.cnblogs.com/demiao/p/11334953.html