StackOverflow 文件 Python Language 教程 Functools 模組 降低 降低 Created: November-22, 2018 在 Python 3.x 中,已在此處解釋的 reduce 函式已從內建函式中刪除,現在必須從 functools 匯入。 from functools import reduce def factorial(n): return reduce(lambda a, b: (a*b), range(1, n+1)) 總訂貨量