Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
3afdb287
Commit
3afdb287
authored
May 13, 2015
by
Raymond Hettinger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix mangled wording
parent
c58cca59
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Doc/library/collections.rst
Doc/library/collections.rst
+2
-2
No files found.
Doc/library/collections.rst
View file @
3afdb287
...
@@ -269,8 +269,8 @@ For example::
...
@@ -269,8 +269,8 @@ For example::
Return a list of the *n* most common elements and their counts from the
Return a list of the *n* most common elements and their counts from the
most common to the least. If *n* is omitted or ``None``,
most common to the least. If *n* is omitted or ``None``,
:func:`most_common` returns *all* elements in the counter.
Elements
:func:`most_common` returns *all* elements in the counter.
with equal counts are ordered arbitrarily:
Elements
with equal counts are ordered arbitrarily:
>>> Counter('abracadabra').most_common(3)
>>> Counter('abracadabra').most_common(3)
[('a', 5), ('r', 2), ('b', 2)]
[('a', 5), ('r', 2), ('b', 2)]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment