Dictionary can be understood as a key-value pair stored together.
dict = {'Name': 'Priyaj', 'Age': 22, 'College': 'TICT'}
print "dict['Name']: ", dict['Name']
print "dict['Age']: ", dict['Age']
Output:
dict[Name]: Priyaj
dict[Age]: 22
This way you can use a dictionary. Hope this helps.