├── __init__.py├── tall2.py└── tall.pytall.pya = 23b = 34class I: def __init__(self): print(444)class J: pass__all__ = [ 'a', 'I',]tall2.py# from tall import b #可以获取b# print(b)from tall import * #不可以获取bprint(b)