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())
 
posted @ 2016-11-21 23:06  whitesky-root  阅读(299)  评论(0编辑  收藏  举报