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 8f57a77 commit c067423Copy full SHA for c067423
README.md
@@ -100,11 +100,6 @@ Set
100
<set> |= <set>
101
```
102
103
-```python
104
-<set>.remove(<el>) # Throws error.
105
-<set>.discard(<el>) # Doesn't throw error.
106
-```
107
-
108
```python
109
<set> = <set>.union(<coll.>) # Or: <set> | <set>
110
<set> = <set>.intersection(<coll.>) # Or: <set> & <set>
@@ -114,6 +109,11 @@ Set
114
<bool> = <set>.issuperset(<coll.>) # Or: <set> >= <set>
115
116
111
112
+```python
113
+<set>.remove(<el>) # Throws error.
+<set>.discard(<el>) # Doesn't throw error.
+```
+
117
### Frozenset
118
#### Is hashable and can be used as a key in dictionary.
119
0 commit comments