Guest User

Untitled

a guest
Oct 18th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. def read_in():
  2. with open("text.txt","r") as file:
  3. for line in file:
  4. <deliminate line>
  5.  
  6. c = Counter(a).most_common()
  7. sort_w = sorted(c)
  8. sorted_fw = sorted(c, key = lambda x : x[1], reverse = True)
Add Comment
Please, Sign In to add comment