# print_list_of_dictionaries.py


people = [

    {

        'name': 'Jane',

        'score': 95

    },

    {

        'name': 'Melissa',

        'score': 98

    },

    {

        'name': 'Tabitha',

        'score': 93

    }

]


print(people)


input('')


##


'''

[{'name': 'Jane', 'score': 95}, {'name': 'Melissa', 'score': 98}, {'name':

'Tabitha', 'score': 93}]

'''


# Dedicated to God the Father

# All Rights Reserved Christopher Andrew Topalian Copyright 2000-2024

# https://github.com/ChristopherTopalian

# https://github.com/ChristopherAndrewTopalian

# https://sites.google.com/view/CollegeOfScripting