将一个列表导出到另一个列表

发布于 2024-12-11 09:18:35 字数 139 浏览 0 评论 0原文

因此,我想将数据从一个列表导出到另一个列表中,这样我就可以对其进行处理,并且仍然拥有原始数据的未更改的副本。我知道您可以通过列表拼接来做到这一点,但我必须仅在由先前定义的函数确定的 i 索引值之后才从第一个列表导出数据。仅在 i 之后我将如何选择该数据?提前致谢。

So I want to export the data from one list into another so I can mess with it and still have an untouched copy of the original data. I know you can do this with list splicing but I have to export the data from the first list only after an index value of i that is determined by a function previously defined. How would I choose that data only after i? Thanks in advance.

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

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

发布评论

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

评论(2

扛刀软妹 2024-12-18 09:18:35

使用 i 进行切片。

newlist = oldlist[i:]

Slice using i.

newlist = oldlist[i:]
尬尬 2024-12-18 09:18:35

拼接工作。如果 x 是您的列表,f 是您的函数,那么

newlist = x[f():]

就是您的新列表

Splicing works. If x is your list, and f is your function, then

newlist = x[f():]

is your new list

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