标签:出错 项目 proc erro name color 自动 try 使用
有关于python里raise显示引发异常的方法:
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
标签:出错 项目 proc erro name color 自动 try 使用
原文地址:https://www.cnblogs.com/JackShi/p/12510921.html