Browse Source

Set

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

6
README.md

@ -306,10 +306,10 @@ float('nan')
### Random
```python
import random
random.random()
random.randint(from_inclusive, to_inclusive)
<float> = random.random()
<int> = random.randint(from_inclusive, to_inclusive)
<el> = random.choice(<list>)
random.shuffle(<list>)
random.choice(<list>)
```
Datetime

Loading…
Cancel
Save