import config as regex
except Exception as e:
logging.error('Issue in Calcutaing: '+str(e))
return None
我想执行此程序,但它会出现以下错误。
import config as regex
File "/usr/local/lib/python3.5/dist-packages/config.py", line 733
except Exception, e:
^
答案 0 :(得分:0)
在Python 3中的行
except Exception, e:
except Exception as e:
可能,如果您希望发布模块,还应该为其提供比config
更具描述性的名称。