将一个列表导出到另一个列表
因此,我想将数据从一个列表导出到另一个列表中,这样我就可以对其进行处理,并且仍然拥有原始数据的未更改的副本。我知道您可以通过列表拼接来做到这一点,但我必须仅在由先前定义的函数确定的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
i
进行切片。Slice using
i
.拼接工作。如果 x 是您的列表,f 是您的函数,那么
就是您的新列表
Splicing works. If x is your list, and f is your function, then
is your new list