반응형
How to add or increment single item of the Python Counter class
python 에서 Counter 증가시키명서 리스트 적용하기.
>>> c = collections.Counter(a=23, b=-9)
#You can add a new element and set its value like this:
>>> c['d'] = 8
>>> c
Counter({'a': 23, 'd': 8, 'b': -9})
#Increment:
>>> c['d'] += 1
>>> c
Counter({'a': 23, 'd': 9, 'b': -9}
#Note though that c['b'] = 0 does not delete:
>>> c['b'] = 0
>>> c
Counter({'a': 23, 'd': 9, 'b': 0})
#To delete use del:
>>> del c['b']
>>> c
Counter({'a': 23, 'd': 9})
Counter is a dict subclass
반응형
'프로그래밍 > Python' 카테고리의 다른 글
[python] python - setuptool, setup.py (0) | 2020.12.21 |
---|---|
[python] Remove Elements From A Counter. counter에서 요소 삭제하기 (0) | 2020.12.17 |
[python] Read file as a list of tuples, 파일읽어서 튜플 만들기 (0) | 2020.12.16 |
Sublime Text 3에서 Python 프로그래밍을 하기 위해 필요한 설정을 다루고 있습니다. (0) | 2020.12.16 |
[python] style cloud 설정 (0) | 2020.12.15 |