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.
当我运行程序的已编译 exe 时,是否可以将已编译的 .pyc 文件粘贴到库中并在不重新打开我的 .exe 的情况下动态导入它?
似乎当您运行 exe 时,所有导入的模块都保存在计算机内存中。所以即使库中导入的模块被删除,也不会报错。
谢谢。