x = map(func1,range(0,10)) print(list(x)) # map函数返回的迭代器只能迭代一次,迭代之后会自动清空 print(list(x)) print("***"*15) # 将map函数 ...
確定! 回上一頁