Skip to content

Commit 1fe5ff1

Browse files
committed
Detailed
1 parent a278313 commit 1fe5ff1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ Format
309309
{123456:10_} # ' 123_456'
310310
{3:08b} # '00000011' -> Binary with leading zeros.
311311
{3:0<8b} # '11000000' -> Binary with trailing zeros.
312-
````
312+
```
313313

314314
#### Float presentation types:
315315
* `'f'` - Fixed point: `.<precision>f`
@@ -1007,8 +1007,8 @@ Eval
10071007

10081008
### Detailed
10091009
```python
1010-
from ast import parse, Num, BinOp, UnaryOp, Add, Sub, Mult, Div, Pow, BitXor, \
1011-
USub
1010+
from ast import parse, Num, BinOp, UnaryOp, \
1011+
Add, Sub, Mult, Div, Pow, BitXor, USub
10121012
import operator as op
10131013

10141014
operators = {Add: op.add,

0 commit comments

Comments
 (0)