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 7dc8a14 commit 40af1baCopy full SHA for 40af1ba
content/python/concepts/collections-module/terms/Counter/Counter.md
@@ -47,5 +47,5 @@ import collections
47
c = collections.Counter("supercalifragilisticexpialidocious")
48
print(f"Counter Collection: {c}\n")
49
print(f"Sorted: {sorted(c.elements())}\n")
50
-print("5 Most Common Items: {c.most_common(5)}")
+print(f"5 Most Common Items: {c.most_common(5)}")
51
```
0 commit comments