8000 DOC: cpython/Lib/collections:Counter.elements: fix docstring by westurner · Pull Request #117387 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

DOC: cpython/Lib/collections:Counter.elements: fix docstring #117387

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
8000
Diff view
DOC: cpython/Lib/collections:Counter.elements: fix docstring
  • Loading branch information
westurner authored Mar 30, 2024
commit 46c37e9911f95a5eaf8f6e8b7e8fde87eabb39f3
5 changes: 3 additions & 2 deletions Lib/collections/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -639,14 +639,15 @@ def elements(self):
>>> sorted(c.elements())
['A', 'A', 'B', 'B', 'C', 'C']

# Knuth's example for prime factors of 1836: 2**2 * 3**3 * 17**1
Knuth's example for prime factors of 1836: ``2**2 * 3**3 * 17**1``:

>>> import math
>>> prime_factors = Counter({2: 2, 3: 3, 17: 1})
>>> math.prod(prime_factors.elements())
1836

Note, if an element's count has been set to zero or is a negative
number, elements() will ignore it.
number, ``elements()`` will ignore it.

'''
# Emulate Bag.do from Smalltalk and Multiset.begin from C++.
Expand Down
0