two python module calls each other

a.py

import b
b.funcA()

 

b.py

def funcA: print('skdjs')

 

introducing a module module Method B

Guess you like

Origin www.cnblogs.com/chenyi4/p/12577636.html