Advertisement
pjmakey2

Untitled

May 3rd, 2021
1,038
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. a = [9, 99, 9, 3,4,4,5,5,6,4,4,4,200,303,200,404,303,404]
  2. a.sort()
  3. from itertools import groupby
  4. for key, group in groupby(a):
  5.      print(key, len(list(group)))
  6.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement