fork download
  1. person = {"Name": "Neeraj", "Age": 28}
  2. print len(person)
  3. print person
  4. person["Profession"] = "Associate Software Engineer"
  5. person["Name"] ="Rishit"
  6.  
  7. for key, value in sorted(person.items()):
  8. print "%s %s" % (key, value),
  9. del person["Name"]
  10. print(person)
Success #stdin #stdout 0.01s 7256KB
stdin
Standard input is empty
stdout
2
{'Age': 28, 'Name': 'Neeraj'}
Age 28 Name Rishit Profession Associate Software Engineer {'Age': 28, 'Profession': 'Associate Software Engineer'}