date ; 2019-08-22 15:10:56
try: s = None if s is None: print("s shi kong de ") raise NameError # 告訴系統受到異常信號 相當於認為制造了一個異常 print(3333333333) # 在raise后面的語句不再執行。 except Exception: print("8888888888888")
執行結果
C:\Python27\python.exe E:/python項目代碼/jira/1.py s shi kong de 8888888888888 Process finished with exit code 0