python2和python3 map函數的區別

map()是 Python內置的高階函數,它接收一個函數 f 和一個 list,並經過把函數 f 依次做用在 list 的每一個元素上,獲得一個新的 list 並返回。python def f(x): return x*x print map(f, [1, 2, 3, 4, 5, 6, 7, 8, 9]) 執行結果:[1, 4, 9, 10, 25, 36, 49, 64, 81] 可是在
相關文章
相關標籤/搜索