Browse Source

Dict

pull/23/head
Jure Šorn 6 years ago
parent
commit
cc85b330d7
1 changed files with 3 additions and 3 deletions
  1. 6
      README.md

6
README.md

@ -54,9 +54,9 @@ index = <list>.index(<el>) # Returns first index of item.
Dictionary
----------
```python
<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.
<view> = <dict>.keys() # Coll. of keys that reflects changes.
<view> = <dict>.values() # Coll. of values that reflects changes.
<view> = <dict>.items() # Coll. of key-value pairs.
```
```python

Loading…
Cancel
Save