文件名称: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
文件名称: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