Advertisement
Guest User

Untitled

a guest
May 26th, 2015
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. def print_hist(h): #p.107
  2. sorted = h.keys()
  3. sorted.sort()
  4. for c in sorted:
  5. print(c, h[c])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement