摘要:
""" #Anonymous functions def cal(x): return x+1 res = cal(10) print(res) func = lambda x : x+1 print(func(10)) # fun = x:x+'_sb' func = lambda x,y,z: 阅读全文
posted @ 2019-12-31 14:30
Zxver-L
阅读(215)
评论(0)
推荐(0)
2019年12月31日