我有两个文件File1
和File2
。在File1
中,我将函数detect()
定义为:
def detect():
s = // some operations
我需要在s
中访问此变量File2
。
我已经尝试将变量声明为global
,但它没有用。
答案 0 :(得分:0)
函数检测来初始化其局部变量。
def detect():
detect.tmp = 1
def b():
print(detect.tmp)
detect()
b()
当然你可以导入一个python文件作为python模块并调用它的函数,如
from File1 import detect
print(detect.tmp)