Python:我可以为所有模块放置默认导入吗?

我可以为所有模块安装默认导入吗? 最佳答案 是的,只需创建一个单独的模块并将其导入您的模块.

例:

# my_imports.py
'''Here go all of my imports'''
import sys
import functools
from contextlib import contextmanager  # This is a long name, no chance to confuse it.
....


# something1.py
'''One of my project files.'''
from my_imports import * 
....

# something2.py
'''Another project file.'''
from my_imports import * 
....

请注意,根据标准指南,应避免使用模块导入*.如果您正在管理一个包含多个需要常用导入的文件的小项目,我认为您可以使用模块导入*,但重构代码仍然是一个更好的主意,以便不同的文件需要不同的导入.

所以这样做:

# something1.py
'''One of my project files. Takes care of main cycle.'''
import sys
....

# something2.py
'''Another project file. Main program logic.'''
import functools
from contextlib import contextmanager  # This is a long name, no chance to confuse it.
....
点赞