Guest User

Untitled

a guest
Feb 23rd, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. # coding: utf-8
  2. myDict = {
  3. "Name" : "John",
  4. "Age" : 20,
  5. "Eyes" : "Blue"
  6. }
  7.  
  8. for key in myDict:
  9. print key, myDict[key]
Add Comment
Please, Sign In to add comment