gpt4 book ai didi

python - 如何只访问列表的特定元素

转载 作者:太空宇宙 更新时间:2023-11-04 08:33:13 25 4
gpt4 key购买 nike

假设我有一个这样的列表:

myList = ["Sprite", "Fanta", "Coke", "7up"]

我只想访问 myList[0]myList[3],它们是 Sprite 和 7up。我试着用列表切片来做,但没做对。

最佳答案

如果您的需求是从知道索引的列表中访问多个元素,那么您可以使用operator.itemgetter

from operator import itemgetter
myList = ["Sprite", "Fanta", "Coke", "7up"]
index = [0,3] # you can add as many indexes(valid ones) you want
print itemgetter(*index)(myList)

输出

('Sprite', '7up')

关于python - 如何只访问列表的特定元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51245098/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com