前言
當python執行時發生:AttributeError: module ‘numbers’ has no attribute ‘Integral’ 的問題。
解決方法
此為重複名稱的 package 被 python import 導致混淆的錯誤
請檢查同一個路徑底下是否有 numbers.py 的檔案
其他類似的 AttributeError: module 問題也可以先檢查是否檔案的命名不小心使用到了一樣的檔名。
Reference
https://stackoverflow.com/questions/53668779/attributeerror-module-numbers-has-no-attribute-integral