摘要: 重要内置函数 zip l1 = [11, 22, 33, 44, 55] l2 = ['jason', 'kevin', 'oscar', 'jerry', 'tony'] l3 = [1, 2, 3, 4, 5] res = zip(l1 ,l2, l3) print(list(res)) # [ 阅读全文
posted @ 2022-10-14 16:52 悠悠-winter 阅读(143) 评论(0) 推荐(0)