from collections import Counter
xx = Counter("203045")
print(xx.keys()) # ['0', '3', '2', '5', '4']
print(xx.items()) # [('0', 2), ('3', 1), ('2', 1), ('5', 1), ('4', 1)]
print(xx.values()) # [2, 1, 1, 1, 1]
print(xx['1']) # 0
set과 같은 결과
(키, 카운트 횟수) 쌍으로 보여줌
키가 카운트 된 횟수를 보여준다