
[英]I am using a large module in many of my files that takes some time to import. Will importing it in every file waste time?
我有一个需要一段时间才能导入的模块,我们称它为 big_module。 该模块创建了我在其他文件中需要的几个变量。 我在我的许多帮助程序文件中使用这个模块,称为 helper1、helper2 等... 我有一个导入每个帮助文件的主文件,所以我的文件看起来像这样: 等等帮助文件。 然后我有我的主文 ...