最佳答案
在 Python 中,我有一个元素 aList
列表和一个索引 myIndices
列表。有没有什么办法可以一次检索到 aList
中的所有项目,并将 myIndices
中的值作为索引?
例如:
>>> aList = ['a', 'b', 'c', 'd', 'e', 'f', 'g']
>>> myIndices = [0, 3, 4]
>>> aList.A_FUNCTION(myIndices)
['a', 'd', 'e']