Browse Source

Dict

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

6
README.md

@ -37,9 +37,9 @@ Dictionary
```
```python
>>> a = [(1, 4), (3, 50)]
>>> a = [('x', 4), ('y', 5)]
>>> dict(a)
{1: 4, 3: 50}
{'x': 4, 'y': 5}
```
```python
@ -66,7 +66,7 @@ Set
<set>.intersection(<set>)
<set>.difference(<set>)
<set>.issubset(<set>)
<set>..issuperset(<set>)
<set>.issuperset(<set>)
```
### Frozenset

Loading…
Cancel
Save