摘要: 1 num=[1,2,5,9,8] 2 def add(x):#lambda x:x+1 3 return x+1 4 def sub(x):#lambda x:x-1 5 return x-1 6 def squ(x):#lambda x:x**2 7 return x**2 8 def map_test(func,x): 9 array =... 阅读全文
posted @ 2018-05-21 22:24 容颜-gl 阅读(597) 评论(0) 推荐(0) 编辑