python 追踪except信息方式

时间:2024-01-10 04:39:22
【文件属性】:

文件名称:python 追踪except信息方式

文件大小:66KB

文件格式:PDF

更新时间:2024-01-10 04:39:22

c ce cep

看下面这个函数 def test(): sum = 3/0 if __name__ == '__main__': test() 除0肯定是不对的,会引发一个except,内容如下: File “E:\Src\dongsheng\TestPython\testtrace_back.py”, line 23, in test() File “E:\Src\dongsheng\TestPython\testtrace_back.py”, line 19, in test sum = 3/0 ZeroDivisionError: integer division or mod


网友评论