반응형
Remove Elements From A Counter
counter에서 요소 삭제하기
Question:
How do you remove an element from a counter?
Answer:
Setting a count to zero does not remove an element from a counter. Use del to remove it entirely.
Source: (example.py)
from collections import Counter
c = Counter(x=10, y=7, z=3)
print(c)
c['z'] = 0
print(c)
del c['z']
print(c)
Output:
$ python example.py
Counter({'x': 10, 'y': 7, 'z': 3})
Counter({'x': 10, 'y': 7, 'z': 0})
Counter({'x': 10, 'y': 7})
반응형
'프로그래밍 > Python' 카테고리의 다른 글
[python] Stanford Pos Tagger를 이용한 POS Tagging, 품사 태깅 약어 정보 (0) | 2021.02.10 |
---|---|
[python] python - setuptool, setup.py (0) | 2020.12.21 |
[python] How to add or increment single item of the Python Counter class (0) | 2020.12.16 |
[python] Read file as a list of tuples, 파일읽어서 튜플 만들기 (0) | 2020.12.16 |
Sublime Text 3에서 Python 프로그래밍을 하기 위해 필요한 설정을 다루고 있습니다. (0) | 2020.12.16 |