python代码调用

同一文件夹情况下

import a

a.funcA()

不同文件夹的话要

import sys
sys.path.append('a.py所在的路径')
import a

a.funcA()

大概是这样