今天爱分享给大家带来python中__all__是什么【面试题详解】,希望能够帮助到大家。
该模块的公有对象列表
__all__指定了使用import module时,哪些对象会被import进来.其他不在列表里的不会被导入
__all__ = ["foo", "bar"]
it’s a list of public objects of that module — it overrides the default of hiding everything that begins with an underscore