Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将一个充满常用定义的脚本文件嵌入到其他脚本文件中。例如,我希望test.py将defs.py(位于同一文件夹中)的内容加载到自身中。
当我尝试添加
import defs
进入 test.py 中的正文,我收到错误“没有名为 defs 的模块”
对于其他面临此问题的人。只需将其添加到您的脚本之上:
import sys sys.path.append(os.path.dirname(__file__))