Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfe109e commit f635172Copy full SHA for f635172
1 file changed
Doc/library/collections.rst
@@ -121,6 +121,7 @@ For example::
121
>>> c = Counter(a=4, b=2, c=0, d=-2)
122
>>> d = Counter(a=1, b=2, c=3, d=4)
123
>>> c.subtract(d)
124
+ >>> c
125
Counter({'a': 3, 'b': 0, 'c': -3, 'd': -6})
126
127
.. versionadded:: 3.2
0 commit comments