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模块:
foo\\ __init__.py bar.py ignoreme.py
导入时如何使foo.ignoreme不导入foo?我可以将 ignoreme 变成一个子模块(不会自动导入),但这似乎不是一个简单的解决方案。我也不想/不能写__all__。__init__.py
foo.ignoreme
foo
__all__
__init__.py
导入 foo 无论如何都不会导入 ignoreme.py。只有“import foo.ignoreme”会执行ignoreme.py。