def __hello_world(*args, **kwargs):
.....
我试过了
from myfile import __helloworld
我可以导入非私有的。
如何导入私有方法?
谢谢。
我现在使用单个下划线。
Traceback (most recent call last):
File "test.py", line 10, in <module>
from myfile.ext import _hello_world
ImportError: cannot import name _hello_world
在我的 test.py
sys.path.insert(0, os.path.abspath(
os.path.join(
os.path.dirname(__file__), os.path.pardir)))
from myfile.ext import _hello_world