a.py b.py 均在同一个文件夹下面,文件名为test a.py def add(x, y): return x + y b.py from test.a import add print(add(1, 2)) # 返回结果是3