gpt4 book ai didi

Python - 从二维数组中获取值

转载 作者:行者123 更新时间:2023-11-28 20:08:44 25 4
gpt4 key购买 nike

我有一个二维数组:

[[], ['shotgun', 'weapon'], ['pistol', 'weapon'], ['cheesecake', 'food'], []]

如何从中调用值?例如我想 print (name + ""+ type) 并得到

shotgun weapon

我找不到这样做的方法。 print list[2][1] 什么都不输出,甚至连错误都不输出。

最佳答案

>>> mylist = [[], ['shotgun', 'weapon'], ['pistol', 'weapon'], ['cheesecake', 'f
ood'], []]
>>> print mylist[2][1]
weapon

记住一些事情,

  1. 不要说出你的名单,list ...这是一个 python 保留字
  2. 列表从索引 0 开始。所以 mylist[0] 会给出 []
    同样,mylist[1][0] 会给出 'shotgun'
  3. 考虑替代数据结构,例如 dictionaries .

关于Python - 从二维数组中获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12826458/

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