map 函数根据提供的函数对指定的序列做映射,定义: map(function, sequence[,sequence,...])--->list. 例1. 复制代码. >>> map(lambda x:x+2, [1, 2, 3]) [3, 4, ...
確定! 回上一頁