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 2f70e1d commit ca6cd5fCopy full SHA for ca6cd5f
README.md
@@ -23,6 +23,7 @@ List
23
<list>.extend(<list>)
24
<list> += [<el>]
25
<list> += <list>
26
+<bool> = <el> in <list>
27
```
28
29
```python
@@ -59,6 +60,7 @@ Dictionary
59
60
<view> = <dict>.items()
61
<value> = <dict>.get(key, default) # Returns default if key does not exist.
62
<value> = <dict>.setdefault(key, default) # Same, but also adds default to dict.
63
+<bool> = key in <dict>
64
<dict>.update(<dict>)
65
66
@@ -92,6 +94,7 @@ Set
92
94
<set>.add(<el>)
93
95
<set>.update(<set>)
96
<set>.clear()
97
+<bool> = <el> in <set>
98
99
100
0 commit comments