Answers for "how to use dictionaries in python 3"

2

how to use dictionaries in python 3

dict = {'Name': 'Zara', 'Age': 7, 'Class': 'First'}
print ("dict['Name']: ", dict['Name'])
print ("dict['Age']: ", dict['Age'])
Posted by: Guest on June-04-2020

Code answers related to "how to use dictionaries in python 3"

Python Answers by Framework

Browse Popular Code Answers by Language