[파이썬] 잘 몰랐던 구문 정리

 
Feb 7, 2023

Contents


딕셔너리 부분

Counter

from collections import Counter foo = Counter([1, 2, 3, 4]) foo.most_common(2) # 가장 많은 요소 2개 찾기
 
notion image