我正在编写一个 Python 脚本来从特定端口获取数据。因此,只要端口打开,我就有一个 while 循环来获取我的数据。在这个 while 循环中,我添加了一个变量,让我们调用它foo1
。时间到了,我不想再获取任何数据。
所以伪代码如下所示:
foo1 = 0
try:
while True:
fetch data
foo1 = foo1 + 500
if time up:
break
finally:
close socket
print foo1
在我的 while 循环内部foo1
正确地加起来。但在循环之外
foo1
总是为零。你有什么主意吗?
只需交换foo1与coh0 编辑:
import re
coh = [0]
nachricht = ' S="0" '
coh0 = 0
time = 0
try:
while True:
time += 1
coh = re.findall(r'\bS="\d"', nachricht)
coh_value = re.findall(r'\d', coh[0])
if coh:
if int(coh_value[0]) == 0:
coh0 = int(coh0) + 500
print coh0
if time == 10:
coh0 = int((int(coh0)/500)/120)
print "Here coh0 is zero again",int(coh0)
break
finally:
pass
print "Here coh0 is zero again",int(coh0)