Skip to content

Commit b40a50b

Browse files
committed
Dict
1 parent f11ae79 commit b40a50b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ index = <list>.index(<el>) # Returns first index of item.
5454
Dictionary
5555
----------
5656
```python
57-
<view> = <dict>.keys()
58-
<view> = <dict>.values()
59-
<view> = <dict>.items()
57+
<view> = <dict>.keys() # Collection of keys that reflects changes.
58+
<view> = <dict>.values() # Collection of values that reflects changes.
59+
<view> = <dict>.items() # Collection of key-value pairs.
6060
```
6161

6262
```python

0 commit comments

Comments
 (0)