用法:
subtract([iterable-or-mapping])
從
iterable
或另一個mapping
(或計數器)中減去元素。像dict.update()
但減去計數而不是替換它們。輸入和輸出都可能為零或負。>>> c = Counter(a=4, b=2, c=0, d=-2) >>> d = Counter(a=1, b=2, c=3, d=4) >>> c.subtract(d) >>> c Counter({'a': 3, 'b': 0, 'c': -3, 'd': -6})
3.2 版中的新函數。
相關用法
- Python collections.Counter.total用法及代碼示例
- Python collections.Counter.elements用法及代碼示例
- Python collections.Counter用法及代碼示例
- Python collections.ChainMap用法及代碼示例
- Python collections.somenamedtuple._replace用法及代碼示例
- Python collections.somenamedtuple._asdict用法及代碼示例
- Python collections.somenamedtuple._field_defaults用法及代碼示例
- Python collections.somenamedtuple._make用法及代碼示例
- Python collections.somenamedtuple._fields用法及代碼示例
- Python collections.OrderedDict.move_to_end用法及代碼示例
- Python Wand color_matrix()用法及代碼示例
- Python compile()用法及代碼示例
- Python codecs.encode()用法及代碼示例
- Python contextlib.AsyncContextDecorator用法及代碼示例
- Python contextlib.AsyncExitStack用法及代碼示例
- Python string count()用法及代碼示例
- Python configparser.ConfigParser.readfp用法及代碼示例
- Python code.compile_command()用法及代碼示例
- Python complex()用法及代碼示例
- Python configparser.ConfigParser.BOOLEAN_STATES用法及代碼示例
注:本文由純淨天空篩選整理自python.org大神的英文原創作品 collections.Counter.subtract。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。