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.
我想要两个或多个可以互相调用函数的 python 文件,就好像它们是同一个文件的一部分一样。测试了在两个文件中相互导入,但结果很奇怪,我认为这不是正确的方法。关于如何做到这一点的任何想法?
谢谢
import是正确的方法。您可能遇到循环导入错误或类似问题,应通过重新组织代码来解决。
import
假设我在 TestFile.py 中有一个名为 test 的函数
如果我想在不同的 .py 文件中导入测试,那么我会这样做
from TestFile import test
这将允许我在我的新 .py 文件中使用测试功能。