python入门之函数的嵌套
Posted 城南花已开
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python入门之函数的嵌套相关的知识,希望对你有一定的参考价值。
函数的嵌套调用
在函数内调用函数
def index():
print('from index')
def func():
index()
print('from func')
func()
def funcl(x, y):
if x > y:
return x
else:
return y
print(funcl(1, 2))
def func2(x, y, z, a):
result = funcl(x, y)
result = funcl(result, z)
result = funcl(result, a)
return result
print(func2(1, 200000, 3, 1000))
函数的嵌套定义
def index():
def home():
print('from home')
home()
index()
以上是关于python入门之函数的嵌套的主要内容,如果未能解决你的问题,请参考以下文章