def add(x): return x + x res = list(map(add,[1,2,3])) print(res) #输出[2,4,6]. 将序列的每一个值分别传入add函数中,返回值替代原始值 ...
確定! 回上一頁