我查看了其他一些解决问题的线程,但不太明白。
假设我有一个包含共享变量的配置文件:
配置文件
flag = False
测试1.py
import config
while(1):
config.flag = True
print config.flag
测试2.py
import config
while(1):
config.flag = False
print config.flag
如果现在我运行Test1.py
and ,我可以在输出中Test2.py
看到切换吗?'True'
'False'
我现在不关心同步,只要它可以访问共享变量,就可以了。
谢谢。