如何在保留第一个索引值的情况下减去具有保留值的列表中的值

How to subtract the value in a list with preserving value with preserving the first index value

我有一个值列表。现在我想用以前的值减去列表中的值,同时忽略第一个索引值的减法。虽然我这样做了,但它并没有将第一个索引值附加到新创建的列表中。如何将第一个索引值附加到列表中?

list1 = [269.76666, 284.1666, 309.45, 357.21666666666664, 393.8833333333333, 443.81666666666666]

diffs = [y - x for x, y in zip(list1 , list1 [1:])]

Output displayed:-
[14.399940000000015,
 25.283399999999972,
 47.76666666666665,
 36.666666666666686,
 49.93333333333334]

Execpted output:-
[269.76666,
14.399940000000015,
 25.283399999999972,
 47.76666666666665,
 36.666666666666686,
 49.93333333333334]

由于您的代码一次选择两个值,它不会添加第一个值,即它选择第 1-2 个、第 2-3 个等等。
因此,您可以在 diffs 的开头添加第一个值,也可以在原始列表中添加一个零。代码:

list1 = [269.76666, 284.1666, 309.45, 357.21666666666664, 393.8833333333333, 443.81666666666666]
list1 = [0]+list1
diffs = [y - x for x, y in zip(list1 , list1 [1:])]
print(diffs)

或者

list1 = [269.76666, 284.1666, 309.45, 357.21666666666664, 393.8833333333333, 443.81666666666666]
diffs = [y - x for x, y in zip(list1 , list1 [1:])]
diffs = [li]
print(diffs)

你快到了 -

first, *rest = list1
diffs = zip(list1[:-1], rest)
final = [first] + [y - x for x, y in diffs]

在上面的答案中,firstrest 拆分只是为了提高可读性,您也可以直接使用索引来取消它