摘要: # def max(a,b):# return a if a>b else b## def the_max(x,y,z): #函数的嵌套调用# c = max(x,y)# return max(c,z)## print(the_max(1,2,3))#函数的嵌套定义#内部函数可以使用外部函数的变量# 阅读全文
posted @ 2019-05-15 07:00 18软件工程五班陈星星 阅读(200) 评论(0) 推荐(0) 编辑