我必须使用Python脚本。在第一个脚本中,我导入第二个脚本,需要将值传递给第二个脚本。
我尝试了以下几点:
的 test1.py:
import test2
test2.set_value(5)
test2.print_value()
test2.py:
value = None
def set_value(v):
print("Set value: " + str(v))
value = v
def print_value():
print(value)
但输出是:
设定值:5
无
我使用的是Python 3.5