python文件调用

如果列表T是a.py中是全局的,则直接调用即可,例如

#a.py
= [1,2,3,4]
def test():
    print("hello world!")
 
#b.py
import a
def test():
    for in a.T:
        print i
运行b.py中test函数,将会输出a中T列表的值
 
如果要调用a.py中的函数:
则:print(a.test())
 
原文地址:https://www.cnblogs.com/yum777/p/6087441.html