Skip to content

Commit a59ee52

Browse files
committed
Format
1 parent eeb798e commit a59ee52

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -297,17 +297,17 @@ Format
297297

298298
### Options Specific to Strings
299299
```python
300-
{'abcde':.3} # 'abc'
301-
{'abcde':>10.3} # ' abc'
300+
{'abcde':.3} # 'abc'
301+
{'abcde':10.3} # 'abc '
302302
```
303303

304304
### Options specific to Numbers
305305
```python
306-
{1.23456:.3f} # '1.235'
307-
{1.23456:>10.3f} # ' 1.235'
308-
{123456:>10,} # ' 123,456'
309-
{123456:>10_} # ' 123_456'
310-
{3:08b} # '00000011' -> Binary with leading zeros.
306+
{1.23456:.3f} # '1.235'
307+
{1.23456:10.3f} # ' 1.235'
308+
{123456:10,} # ' 123,456'
309+
{123456:10_} # ' 123_456'
310+
{3:08b} # '00000011' -> Binary with leading zeros.
311311
````
312312

313313
#### Float presentation types:

0 commit comments

Comments
 (0)