How to print keys and values of a dictionary which is contained in a list in Python

后端 未结 2 1970
臣服心动
臣服心动 2021-01-29 08:36
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\": \"Ali         


        
2条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-29 09:09

    You can use "For each" is to easy use on python:

    Example:

    items = [1,2,3,4]
    for item in items:
        print item
    

    This print all the numbers in our list

    Here a solution:

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

    I hope this help you!

提交回复
热议问题