Counter

케나·2022년 3월 11일
0
post-custom-banner
import collections
from collections import Counter

➰ 문자열 내 문자 갯수 세기

temp = Counter(list) # [('l', 3), ('o', 2)]

➰ 문자열 내 문자 갯수 오름차순 정렬

temp = Counter(list).most_common() # [('l', 3), ('o', 2)]

➰ 문자열 내 문자 갯수 오름차순 정렬

인자를 넣어주면 n개 만큼 고를 수 있지요

temp = Counter(list).most_common(1) # [('l', 3)]

0개의 댓글