1. 程式人生 > >python中報錯 ImportError: cannot import a.b

python中報錯 ImportError: cannot import a.b

比如想呼叫a/b.py 中的函式

from a.b import *

報錯 “ImportError: cannot import a.b”

 

解決方法:很可能是因為資料夾a中沒有__init__.py檔案,這樣python不會把它視為package。解決方法就是建立 a/__init__.py檔案(檔案空白內容即可)

 

參考資料:https://stackoverflow.com/questions/338768/python-error-importerror-no-module-named