Browse Source

Set

pull/3/head
Jure Šorn 5 years ago
parent
commit
caa7fcf30d
1 changed files with 5 additions and 5 deletions
  1. 10
      README.md

10
README.md

@ -90,10 +90,10 @@ Set
``` ```
```python ```python
<set> = <set>.union(<set>) # Or: <set> | <set>
<set> = <set>.intersection(<set>) # Or: <set> & <set>
<set> = <set>.difference(<set>) # Or: <set> - <set>
<set> = <set>.symmetric_difference(<set>) # Or: <set> ^ <set>
<set> = <set>.union(<set>) # Or <set> | <set>
<set> = <set>.intersection(<set>) # Or <set> & <set>
<set> = <set>.difference(<set>) # Or <set> - <set>
<set> = <set>.symmetric_difference(<set>) # Or <set> ^ <set>
<bool> = <set>.issubset(<set>) <bool> = <set>.issubset(<set>)
<bool> = <set>.issuperset(<set>) <bool> = <set>.issuperset(<set>)
``` ```
@ -304,7 +304,7 @@ Numbers
```python ```python
round(<num> [, ndigits]) round(<num> [, ndigits])
abs(<num>) abs(<num>)
math.pow(x, y) # Or: x**y
math.pow(x, y) # Or x ** y
``` ```
### Constants ### Constants

Loading…
Cancel
Save