标签:one 调用函数 pre code 问题 elf 印象 运行 res
第一次将函数其实就讲了函数的调用,但是你不得不再次更新你对函数调用的印象。函数名(…)
即调用函数,会执行函数体代码,直到碰到return或者执行完函数体内所有代码结束。
函数运行完毕所有代码,如果函数体不写return,则会返回None。
def foo():
pass
print(foo())
None
很愚蠢的一个问题,但是我们依然得回答:使用函数的功能。
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)
标签:one 调用函数 pre code 问题 elf 印象 运行 res
原文地址:https://www.cnblogs.com/Dr-wei/p/11871581.html