#!/usr/bin/python
dict = {'Name': 'Zara', 'Age': 7, 'Class': 'First'}
dict['Age'] = 8 # update
dict['School'] = "JIYIK" # append
print "dict['Age']: ", dict['Age']
print "dict['School']: ", dict['School']