Browse Source

update

pull/1/head
Jure Šorn 7 years ago
parent
commit
74d6cbc1ee
2 changed files with 1 additions and 6 deletions
  1. 5
      CONDENSED.md
  2. 2
      README.md

5
CONDENSED.md

@ -16,11 +16,6 @@ range(<from inclusive>, <to exclusive>, <step size>) # Negative step for backwa
random.randint(<from inclusive>, <to inclusive>) random.randint(<from inclusive>, <to inclusive>)
``` ```
List
----
```python
```
Dictionary Dictionary
---------- ----------
``` ```

2
README.md

@ -22,6 +22,7 @@ sorted_by_second = sorted(<list>, key=lambda tup: tup[1])
Dictionary Dictionary
---------- ----------
```
<dict>.items() <dict>.items()
<dict>.get(<key>, <default>) <dict>.get(<key>, <default>)
<dict>.setdefault(<key>, <default>) <dict>.setdefault(<key>, <default>)
@ -207,7 +208,6 @@ class <name>:
``` ```
### Enum ### Enum
----
``` ```
import enum import enum
class <name>(enum.Enum): class <name>(enum.Enum):

Loading…
Cancel
Save