如何迭代此代码,以便可以将最后交易的值动态保存在列表中?
def get_ltp(data, strike_price):
for d in data:
if strike_price == d[5]:
return d[5]
n=get_ltp(data, '12000.00')
n2=int(n.replace(',', ''))
vol_opt.append(n2)
print(vol_opt)
threading.Timer(5, get_ltp(data,'12000.00')).start()
get_ltp(data, '12000.00')
答案 0 :(得分:0)
由于每5秒只需要运行一个线程,因此可以使用带有While True:
的{{1}}子句来睡眠x秒。
time.sleep()