Skip to content

Commit fdd3d7e

Browse files
committed
learn to count to 3
1 parent 6bafc68 commit fdd3d7e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

basics/dicts.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,10 @@ Dictionaries have some similarities with lists. For example, both
111111
lists and dictionaries have a length.
112112

113113
```python
114-
>>> len(names_and_pets) # contains two elements
115-
2
116-
>>> len(favorite_pets) # contains two key:value pairs
117-
2
114+
>>> len(names_and_pets) # contains three elements
115+
3
116+
>>> len(favorite_pets) # contains three key:value pairs
117+
3
118118
>>>
119119
```
120120

0 commit comments

Comments
 (0)