摘要: 1. 函数嵌套 1.1 函数嵌套调用 函数的嵌套调用:在调用一个函数的过程中,又调用了其他函数 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 = 阅读全文
posted @ 2017-07-24 08:46 平凡执着 阅读(221) 评论(0) 推荐(0) 编辑