如果列表T是a.py中是全局的,则直接调用即可,例如
#a.py
T
=
[
1
,
2
,
3
,
4
]
#b.py
import
a
def
test():
for
i
in
a.T:
print
i
运行b.py中test函数,将会输出a中T列表的值
时间: 2024-10-07 19:18:21
如果列表T是a.py中是全局的,则直接调用即可,例如
#a.py
T
=
[
1
,
2
,
3
,
4
]
#b.py
import
a
def
test():
for
i
in
a.T:
print
i
运行b.py中test函数,将会输出a中T列表的值