0
我正在使用VS Code在Python中进行编码。每当我尝试从相对路径导入Python模块时,都会出现上述错误。文件夹路径没有问题。我已经尝试过在Pycharm中导入相对路径,并且效果很好。
但是,如果我单击“文件”->“关闭文件夹”,然后重新打开该文件夹,该错误就会消失,并且能够从python模块导入。为什么会这样?
from py1 import hello
hello() # Simply should print "hello"
ImportError: cannot import name 'hello' from 'py1'
py1
模块会自动进行智能化,因此文件没有任何问题。导入库也没有问题。