Python 入門指南 5.0
exercise0810.py
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # 例外處理 try: raise KeyboardInterrupt raise KeyError raise IndexError except IndexError: print("發生 IndexError") except KeyError: print("發生 KeyError") except: print("發生不明錯誤") # 檔名: exercise0810.py # 說明:《Python入門指南》的練習 # 網站: http://kaiching.org # 作者: 張凱慶 # 時間: 2023 年 8 月 |