Skip to content

Commit caa95fe

Browse files
committed
Comment for counter object in assignment section.
1 parent d15fbc6 commit caa95fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

concepts/basics/about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ For example, `my_first_variable` can be re-assigned many times using `=`, and ca
6565
"Now, I'm a string." # Strings can be declared using single or double quote marks.
6666

6767
import collections
68-
>>> my_first_variable = collections.Counter([1,1,2,3,3,3,4,5,6,7])
68+
>>> my_first_variable = collections.Counter([1,1,2,3,3,3,4,5,6,7]) # Now the name has been re-bound to a Counter object.
6969
>>> print(type(my_first_variable))
7070
<class 'collections.Counter'>
7171

0 commit comments

Comments
 (0)