-
[Python] unique key counting dictionaryImplementation/Python 2021. 9. 26. 21:29
# 리스트 요소의 unique key value count 를 dict 구조로 만들어주는 라이브러리 from collections import Counter s2 = "dcda" Counter(s2) #Counter({'d': 2, 'c': 1, 'a': 1}) # 리스트 컴프리헨션으로 만들면 아래와 같다 dict(zip(s2, [s2.count(k) for k in s2])) #{'d': 2, 'c': 1, 'a': 1}
'Implementation > Python' 카테고리의 다른 글
[Python] max 함수에서 key 값 사용하기 (0) 2021.10.27 [Python] tuple(index, key) in list (0) 2021.10.27 [Python] random int list (comprehension list) (0) 2021.09.30 [Python] tensorflow.expand_dims (0) 2021.09.28 [Python] Permutation with string (0) 2021.09.26