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

发布于 2025-01-09 11:39:30 字数 524 浏览 0 评论 0原文

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

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]

I have a list of values. Now I want to subtract the values in list with the previous values while ignoring the subtraction for the first index value. Although I did it, It's not appending the first index value into the newly created list. How do I append the first index value into the list?

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]

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

菩提树下叶撕阳。 2025-01-16 11:39:30

由于您的代码一次选择两个值,因此它不会添加第一个值,即它选择第 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)

Since your code selects two values at a time, it doesn't add the 1st value, i.e. it chooses the 1st-2nd, 2nd-3rd and so on.
So, you can either add the 1st value at the start of diffs or add a zero in the original list. Code:

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)

Or

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)
笑看君怀她人 2025-01-16 11:39:30

你就快到了 -

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

在上面的答案中, firstrest 分割只是为了提高可读性,你也可以通过直接使用索引来消除它

You are almost there -

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

In the above answer, the first and rest split is only for helping readability, you can do away with it too by using the indices directly

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文