2022年3月27日
摘要: 常用迭代函数 1、 map(func,iter1) def f1(x): return x**2n =[5,1,3,4,5,6]z = map(f1,n)print(type(z))'''返回map 值'''for i in z: print(i) 2、zip(iter,iter2) n =[5,1 阅读全文
posted @ 2022-03-27 13:31 Lionever 阅读(25) 评论(0) 推荐(0) 编辑