python中map與reduce

''' map(func,*iterable) 參數1: func 指的是參數都需要執行的函數 參數2: 可迭代對象(可以for循環遍歷的),都需要執行參數1函數的序列 作用:將參數2中的每個數據依次取出來執行參數1,得到執行後的結果 ''' #案例:將[1,2,3,4,5] --->["1","2","3","4","5"] list1 = [1,2,3,4,5,6] res = map(str
相關文章
相關標籤/搜索