Guest User

Untitled

a guest
Jan 17th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. python_words = {'list': 'A collection of values that are not connected, but have an order.',
  2. 'dictionary': 'A collection of key-value pairs.',
  3. 'function': 'A named set of instructions that defines a set of actions in Python.',
  4. }
  5.  
  6. for word in sorted(python_words.keys()):
  7. print(word)
Add Comment
Please, Sign In to add comment