我想导入颜色模块,但出现错误:
ImportError: No module named 'scripts.UltraColor'
导入代码:
from scripts.UltraColor import *
导入代码在
pygameTest.py
中 最佳答案
就此问题而言,据我在该屏幕截图上所见,UltraColor文件没有.py扩展名,为了使导入正常工作,您需要将其从UltraColor
重命名为UltraColor.py
,否则将引发ImportError
异常。
有关更多信息,请看一看。 Import a python module without the .py extension