1a_dictionary = {"a": 1, "b": 2, "c":3}
2keys_list = list(a_dictionary)
3key = keys_list[0]
4print(key)
1#!/usr/bin/python
2
3dict = {'Name': 'Zabra', 'Age': 7}
4print "Value : %s" % dict.get('Age')
5print "Value : %s" % dict.get('Education', "Never")