Browse Source

Removed in operator

pull/5/head
Jure Šorn 6 years ago
parent
commit
4264dcea49
1 changed files with 0 additions and 2 deletions
  1. 2
      README.md

2
README.md

@ -23,7 +23,6 @@ List
<list>.extend(<list>)
<list> += [<el>]
<list> += <list>
<bool> = <el> in <list>
```
```python
@ -60,7 +59,6 @@ Dictionary
<view> = <dict>.items()
<value> = <dict>.get(key, default) # Returns default if key does not exist.
<value> = <dict>.setdefault(key, default) # Same, but also adds default to dict.
<bool> = key in <dict>
<dict>.update(<dict>)
```

Loading…
Cancel
Save