单身棒球

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

map函数 for python

格式map(function, iterable)实现可迭代对象的元素以此用函数function执行一边,得到新的可迭代对象举个栗子def func(x): '''求平方''' return x**2a = [1, 2, 3, 4, 5]b = map(func, a) # 得到一个可迭代对象<map object at 0x7f88244cd128>print...