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 f11ae79 commit b40a50bCopy full SHA for b40a50b
README.md
@@ -54,9 +54,9 @@ index = <list>.index(<el>) # Returns first index of item.
54
Dictionary
55
----------
56
```python
57
-<view> = <dict>.keys()
58
-<view> = <dict>.values()
59
-<view> = <dict>.items()
+<view> = <dict>.keys() # Collection of keys that reflects changes.
+<view> = <dict>.values() # Collection of values that reflects changes.
+<view> = <dict>.items() # Collection of key-value pairs.
60
```
61
62
0 commit comments