我使用以下代码生成了时间戳列表:
no_of_readings = int(math.ceil(no_of_seconds/measurement_interval))
timestamps = [time_intervals[0]["timestamp"] - timedelta(seconds=x * measurement_interval)
for x in range(1, int(math.ceil(no_of_readings)))
]
timestamps.reverse()
但是当我尝试撤消时间戳列表时,它返回无。 我该怎么做才能解决这个问题?
我认为问题在于因为元素是dataetime.datetime(2018,02,16,0,0,1)
的形式。任何帮助将不胜感激。
答案 0 :(得分:2)
list.reverse
方法将列表转换为,但实际上并未返回列表。因此,在执行您显示的代码后,timestamps
将包含反向列表,即使timestamps.reverse()
返回None
。
答案 1 :(得分:2)
在你的例子中
timestamps.reverse()
print timestamps
print timestamps.reverse()
第二个打印显示reverse()返回
reverse()应该返回None,所以我猜你会看到正确的行为
>>> z=[x for x in range (1,37)]
>>> z
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36]
>>> z.reverse()
>>> z
[36, 35, 34, 33, 32, 31, 30, 29, 28, 27, 26, 25, 24, 23, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1]
>>> res=z.reverse()
>>> res is None
True