问题如下:
解决方法:
python2和python3的 处理 except 子句的语法有点不同,需要注意;
Python2
try:
print ("hello world")
except ZeroDivisionError, err: # , 加原因参数名称
print ('Exception: ', err
python3:
try:
print ("hello,world")
except ZeroDivisionError as err: # as 加原因参数名称
print ('Exception: ', err)
PS:解决方法来自 https://blog.csdn.net/DarrenXf/article/details/82957268