python基础-函数之装饰器迭代器与生成器
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python基础-函数之装饰器迭代器与生成器相关的知识,希望对你有一定的参考价值。
1. 函数嵌套
1.1 函数嵌套调用
函数的嵌套调用:在调用一个函数的过程中,又调用了其他函数
def bar(): print("from in the bar.") def foo(): print("from in the foo.") bar() foo()
1.2 求函数最大值
def max2(x,y): if x > y: return x else: return y def max4(a,b,c,d): res1 = max2(a,b) res2 = max2(res1,c) res3 = max2(res2,d) return res3 res = max4(2,5,3,-4) print(res)
1.3 函数嵌套定义
函数的嵌套定义:在一个函数的内部,又定义另外一个函数
def f1(): x = 1 def f2(): print("from f2.") f2() # 只能在函数内部调用 f1()
以上是关于python基础-函数之装饰器迭代器与生成器的主要内容,如果未能解决你的问题,请参考以下文章