存储值随时间变化的变量的值

时间:2018-03-01 07:25:19

标签: python python-3.x

使用Python 3.x,我在下面的代码中有两个变量ab a字典b存储来自"last_price"的{​​{1}}密钥的值。

我的问题是a随时间而变化," b"的值也是如此。

我需要将a的每个值存储在某些变量中,并且在任何时刻,我希望得到的值立即低于所有值中的最高值。

请帮帮我。

b

1 个答案:

答案 0 :(得分:0)

将C作为第三个数组。在C中存储A的每个值。 喜欢

C[0] <- value of A at current time

间隔后

C[1] <- value of A at current time

间隔后

C[2] <- value of A at current time

通常,添加在特定时间后迭代的循环,并在每次迭代时存储A的当前值。

 int indexCounter = 0;
 for(i=1; i<=10; i++){
    C[indexCounter] <- A   # A denotes current value of your A variable. 
    indexCounter++
    sleep(1000)     # assuming your A variable refreshes every 1000 miliseconds.
 }

现在你有了一组具有一组值的数组C.对C的所有项目进行最小值计算 PS。我不擅长python。这只是符合您要求的逻辑。