Created
September 26, 2022 21:14
-
-
Save ZhouYang1993/e736cc7d65a7f6ef57dbf8404caec748 to your computer and use it in GitHub Desktop.
Counter in Python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from collections import Counter | |
author = "Yang Zhou" | |
chars = Counter(author) | |
print(chars) | |
# Counter({'Y': 1, 'a': 1, 'n': 1, 'g': 1, ' ': 1, 'Z': 1, 'h': 1, 'o': 1, 'u': 1}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment