我有一个包含约500个值的列表,代表下面LIST中最近500周的值。 LIST_INDEX是本周的索引。但是,如果我想回到过去并查看该时间段的索引,比如说LIST [134:144],而不是每个时间段手动编写500行代码,我该怎么做?我需要它从LIST [0:10]到LIST [490:500]
LIST = ["in this list there are about 500 values"]
CURRENT_VALUE = (LIST[-1])
LIST_INDEX = (CO_CURRENT_VALUE - min(LIST[197:207])) / (max(LIST[197:207])- min(LIST[197:207]))
答案 0 :(得分:0)
您可以尝试以下代码
LIST = ["in this list there are about 500 values"]
for i in range(490):
print(LIST[i:i+10])