Which of the statements(s) is /are correct? Python Dictionary is an ordered collection of items. Python Dictionary is a mapping of unique keys to values. Python Dictionary is mutable. all of these code example
Example: how to use dictionaries in python 3
dict = {'Name': 'Zara', 'Age': 7, 'Class': 'First'}
print ("dict['Name']: ", dict['Name'])
print ("dict['Age']: ", dict['Age'])