Browse Source

Inline

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

2
README.md

@ -352,7 +352,7 @@ any(el[1] for el in <collection>)
```
```python
>>> [a if a else 2 for a in [0,1,0,3]]
>>> [a if a else 2 for a in [0, 1, 0, 3]]
[2, 1, 2, 3]
```

Loading…
Cancel
Save