标签:1.2 log turn bar int rom style 迭代 函数
函数的嵌套调用:在调用一个函数的过程中,又调用了其他函数
def bar(): print("from in the bar.") def foo(): print("from in the foo.") bar() foo()
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)
函数的嵌套定义:在一个函数的内部,又定义另外一个函数
def f1(): x = 1 def f2(): print("from f2.") f2() # 只能在函数内部调用 f1()
标签:1.2 log turn bar int rom style 迭代 函数
原文地址:http://www.cnblogs.com/goodshipeng/p/7226986.html