[python] Collections 모듈 - Counter, most_common
프로그래머스 귤 고르기 문제 풀이를 위한 공부 Collections 모듈은 파이썬 내장 모듈로 따로 설치를 안해도 사용이 가능하다. Counter - List에 각 요소가 몇개 있는지 알려주고 most_common - 요소가 많은 순서대로 나타내준다 import collections data_list = ['a', 'b', 'b', 'c', 'c', 'c', 'd', 'd', 'd', 'd', 'e', 'e', 'e', 'e', 'e'] counter = collections.Counter(data_list) print(counter) #1 Counter({'e': 5, 'd': 4, 'c': 3, 'b': 2, 'a': 1}) counter_el = counter.elements() print(sort..
2022. 11. 29.