Python 入門指南 5.0
exercise2201.py
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # 定義參數例外類別 class ParameterError(Exception): def __init__(self): super().__init__(self) def __str__(self): # 設定顯示的錯誤訊息 return "參數型態錯誤" # 檔名: exercise2201.py # 說明:《Python入門指南》的練習 # 網站: http://kaiching.org # 作者: 張凱慶 # 時間: 2023 年 10 月 |