gpt4 book ai didi

python - Python 中的数组索引

转载 作者:太空宇宙 更新时间:2023-11-03 12:14:31 24 4
gpt4 key购买 nike

初学者,正在学习python,正在想一些事情。

这给了我第二个元素:

list = [1,2,3,4]
list.index(2)
2

但是当我尝试这个时:

list = [0] * 5
list[2] = [1,2,3,4]
list.index[4]

我得到一个错误。有没有办法从数组中提取元素的索引,无论它放在哪个列表中?我知道字典是可能的:

info = {first:1,second:2,third:3}
for i in info.values:
print i
1
2
3

列表有类似的东西吗?

最佳答案

index 方法没有达到您的预期。要在索引处获取项目,您必须使用 [] 语法:

>>> my_list = ['foo', 'bar', 'baz']
>>> my_list[1] # indices are zero-based
'bar'

index 用于从项目中获取索引:

>>> my_list.index('baz')
2

如果你问是否有任何方法可以让 index 递归到子列表中,答案是否定的,因为它必须返回一些你可以传递给 的东西[][] 从不进入子列表。

关于python - Python 中的数组索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15726618/

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