We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eeb798e commit a59ee52Copy full SHA for a59ee52
README.md
@@ -297,17 +297,17 @@ Format
297
298
### Options Specific to Strings
299
```python
300
-{'abcde':.3} # 'abc'
301
-{'abcde':>10.3} # ' abc'
+{'abcde':.3} # 'abc'
+{'abcde':10.3} # 'abc '
302
```
303
304
### Options specific to Numbers
305
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.
+{1.23456:.3f} # '1.235'
+{1.23456:10.3f} # ' 1.235'
+{123456:10,} # ' 123,456'
+{123456:10_} # ' 123_456'
+{3:08b} # '00000011' -> Binary with leading zeros.
311
````
312
313
#### Float presentation types:
0 commit comments