I trying to print out a dictionary in Python:
Dictionary = {\"Forename\":\"Paul\",\"Surname\":\"Dinh\"} for Key,Value in Dictionary.iteritems(): print Key,
You can use collections.OrderedDict. It's available in python2.7 and python3.2+.