리스트 안에 있는 원소별 개수를 세어서 dictionary로 return
from collections import Counter
c = Counter([list])
리스트 안의 특정 element의 개수
list.count([element])
'언어 > python cheatsheet' 카테고리의 다른 글
이상한 swap (0) | 2019.10.23 |
---|---|
remove key from dictionary if exists, else return None (0) | 2019.10.23 |
dictionary comprehension (0) | 2019.10.22 |
zip() (0) | 2019.10.22 |
string replace with dictionary mapping(maketrans, translate) (0) | 2019.10.22 |