列表中列表中项目的索引?

时间:2013-11-12 22:35:30

标签: python list python-3.x

说我有以下代码:

names_list = [['Abby', 'Albert'], ['Bert', 'Bob'], ['Gina', 'Greg']]

现在你怎么打印艾伯特? 要打印'abby','albert',我会使用:

print (names_list[0])

你如何使用列表中的项目? 希望你明白我的意思。

2 个答案:

答案 0 :(得分:2)

print (names_list[0][1]) # prints Albert

要回答评论中的问题:

names_list = [['Abby', ['name', 'lastname']]]

print(names_list[0][1][1]) # prints lastname


              |            0               |  # names_list[0]
names_list = [['Abby', ['name', 'lastname']]]
               |  0  | |         1        |   # two elems within names_list[0]
                        | 0  |  |    1   |    # two elems in names_list[0][1]

答案 1 :(得分:0)

您可以分2步完成

Python 3.3.1 (default, Sep 25 2013, 19:29:01) 
[GCC 4.7.3] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> names_list = [['Abby', 'Albert'], ['Bert', 'Bob'], ['Gina', 'Greg']]
>>> 
>>> firstset = names_list[0]
>>> print (firstset)
['Abby', 'Albert']
>>> 
>>> albert = firstset[1]
>>> print (albert)
Albert

或者你可以一步完成

>>> print (names_list[0][1])
Albert