map函數

map函數是python的內置函數之一。 NB(注意): # 後面的部分表示輸出結果 代碼以下:python def func(n): return len(n) x = map(func, ('hello', 'world')) print(x) # <map object at 0x0000020F8D6BD988> print(list(x)) # [5, 5] print(tu
相關文章
相關標籤/搜索