摘要: 一.常用内置函数 1.1 map() 映射 1 l = [1, 2, 3, 4] 2 res = map(lambda x: x + 1, l) 3 print(list(res)) 1.2 zip() 拉链 1 zip() # 拉链 2 l1 = ['11', '22', '33', '99'] 阅读全文
posted @ 2021-11-19 22:13 bug俱乐部 阅读(69) 评论(0) 推荐(0)