Python 入門指南 5.0

exercise1905.py

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# 定義計算階乘的函數
def factorial(number: int) -> int:
    # 內層函數
    def calculate(number: int):
        # 暫存結果的變數
        result = 1
        # 計算到 number 的階乘
        for i in range(1, number+1):
            result *= i
        # 回傳計算結果
        return result
    # 檢查參數 number 是否為整數
    try:
        assert type(number) is int
        # 回傳計算結果
        return calculate(number)
    except AssertionError:
        # 回傳 0
        return 0

# 執行部分
if __name__ == "__main__":
    print(factorial(5))
    print(factorial(10))

# 檔名: exercise1905.py
# 說明:《Python入門指南》的練習
# 網站: http://kaiching.org
# 作者: 張凱慶
# 時間: 2023 年 10 月

回到練習題目
上一頁 exercise1904.py
回 Python 入門指南 5.0 首頁
下一頁 exercise1906.py
回 Python 教材首頁
回程式語言教材首頁