Deleting dictionary elements
1. You can either remove individual dictionary elements or clear the entire contents of a dictionary.
2. You can also delete entire dictionary in a single operation. To explicitly remove an entire dictionary, just use the del statement.
3. dict = {'Name': 'Zara', 'Age': 7, 'Class': 'First'}
4. del dict['Name']; # remove entry with key 'Name'
5. dict.clear(); # remove all entries in dict
6. del dict ; # delete entire dictionary
7. print ("dict['Age']: ", dict['Age'])
8. print ("dict['School']: ", dict['School'])