如何从字典列表中调用字典值?

时间:2013-07-19 21:33:05

标签: python list dictionary

我正在尝试用codeacademy学习python。 作业是制作3个词典(每个学生),然后列出3个词典。那么,我应该打印出列表中的所有数据。

我试图以与我自己用于字典的方式相同的方式调用值(lloyd [values]),但后来它表示值未定义为o_O。我也尝试'打印名称'但是错误信息是我没有打印出其中一个值。

我非常感谢你的帮助。

 lloyd = {
     "name": "Lloyd",
     "homework": [90.0, 97.0, 75.0, 92.0],
     "quizzes": [88.0, 40.0, 94.0],
     "tests": [75.0, 90.0]
 }
 alice = {
     "name": "Alice",
     "homework": [100.0, 92.0, 98.0, 100.0],
     "quizzes": [82.0, 83.0, 91.0],
     "tests": [89.0, 97.0]
 }
 tyler = {
     "name": "Tyler",
     "homework": [0.0, 87.0, 75.0, 22.0],
     "quizzes": [0.0, 75.0, 78.0],
     "tests": [100.0, 100.0]
 }
 students = [lloyd, alice, tyler]
 for names in students:
     print lloyd[values]

6 个答案:

答案 0 :(得分:5)

如果您想要打印每个学生的所有信息,您必须循环学生和存储在词典中的值:

students = [lloyd, alice, tyler]
for student in students:
    for value in student:
        print value, "is", student[value]

但是请注意,字典不是有序的,因此值的顺序可能与您想要的顺序不同。在这种情况下,单独打印它们,使用值的名称作为键作为键:

for student in students:
    print "Name is", student["name"]
    print "Homework is", student["homework"]
    # same for 'quizzes' and 'tests'

最后,您还可以使用pprint模块“漂亮地打印”学生词典:

import pprint
for student in students:
    pprint.pprint(student)

答案 1 :(得分:2)

您只需打印dicts的值:

for names in students:
   print names #names are the dictionaries

如果您只想打印名称,请使用name键:

for student in students:
    print student['name']

答案 2 :(得分:2)

我建议使用namedtuple代替可读性和可伸缩性:

from collections import namedtuple

Student = namedtuple('Student', ['name', 'hw', 'quiz', 'test'])

Alice = Student('Alice', herHWLst, herQuizLst, herTestLst)
Ben = Student('Ben', hisHWLst, hisQuizLst, hisTestLst)

students = [Alice, Ben]

for student in students:
    print student.name, student.hw[0], student.quiz[1], student.test[2] 
    #whatever value you want

如果您真的想要创建大量字典,可以使用上面的代码阅读:

for student in students:
    name = student['name']
    homeworkLst = student['homework']
    # get more values from dict if you want
    print name, homeworkLst

在Python中访问字典非常快,但创建它们可能不会那么快和有效。在这种情况下,namedtuple更实用。

答案 3 :(得分:0)

所以students是一个词典列表。然后你想要

for student in students:
    print student['name']

此外,当您想要在字典中调用键时,您必须将键名称放在引号中,作为字符串:alice[homework]不起作用,因为Python认为homework是一个变量。您需要alice['homework']代替。

所以要很好地查看所有信息,你可以做到

for student in students:
    for field in student.keys():
        print "{}: {}".format(field, student[field])

你可以四处玩,使格式更好,例如首先打印名称,在每个新学生之间插入新行等

答案 4 :(得分:0)

这就是我在codeacademy上解决的问题。希望有人觉得这很有帮助 对于学生:

print student['name']
print student['homework']
print student['quizzes']
print student['tests']

答案 5 :(得分:0)

这是我让他们接受的。

for name in students:
    print name["name"]
    print name["homework"]
    print name["quizzes"]
    print name["tests"]

这也有效但他们不接受。

for name in students:
    print name