摘要: 如果列表T是a.py中是全局的,则直接调用即可,例如 #a.py T = [1,2,3,4] def test(): print("hello world!") #b.py import a def test(): for i in a.T: print i 运行b.py中test函数,将会输出a中 阅读全文
posted @ 2016-11-21 23:06 whitesky-root 阅读(299) 评论(0) 推荐(0) 编辑