寂寞戒指

文章
5
资源
0
加入时间
2年10月24天

自己实现Python中的map函数

'''自定义map'''def map(func,*iterators): try: i = 0 while 1: yield func(*[j[i] for j in iterators]) i+=1 except IndexError : pass这里使用yield生成器...