Browse Source

Set

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

10
README.md

@ -76,11 +76,11 @@ Set
<set> = set()
<set>.add(<el>)
<set>.update(<set>)
<set>.union(<set>)
<set>.intersection(<set>)
<set>.difference(<set>)
<set>.issubset(<set>)
<set>.issuperset(<set>)
<set> = <set>.union(<set>)
<set> = <set>.intersection(<set>)
<set> = <set>.difference(<set>)
<bool> = <set>.issubset(<set>)
<bool> = <set>.issuperset(<set>)
```
### Frozenset

Loading…
Cancel
Save