Skip to content

Instantly share code, notes, and snippets.

@tfolkman
Created October 25, 2019 13:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tfolkman/baff331fcfd65ae411fe1c8b672c7e1f to your computer and use it in GitHub Desktop.
Save tfolkman/baff331fcfd65ae411fe1c8b672c7e1f to your computer and use it in GitHub Desktop.
counter
from collections import Counter
ages = [22, 22, 25, 25, 30, 24, 26, 24, 35, 45, 52, 22, 22, 22, 25, 16, 11, 15, 40, 30]
value_counts = Counter(ages)
print(value_counts.most_common())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment