python 两个模块互相调用

a.py

import b
b.funcA()

b.py

def funcA: print('skdjs')

a模块引入B模块的方法

原文地址:https://www.cnblogs.com/chenyi4/p/12577636.html