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 287d0db commit be03c16Copy full SHA for be03c16
README.md
@@ -352,15 +352,7 @@ Format
352
{'abcde':10.3} # 'abc '
353
```
354
355
-### Float Options
356
-```python
357
-{1.23456:.3f} # '1.235'
358
-{1.23456:10.3f} # ' 1.235'
359
-{1.23456:10.3e} # ' 1.235e+00'
360
-{1.23456:10.3%} # ' 123.456%'
361
-```
362
-
363
-### Int Options
+### Number Options
364
```python
365
{ 123456:10,} # ' 123,456'
366
{ 123456:10_} # ' 123_456'
@@ -370,7 +362,14 @@ Format
370
{-123456: } # '-123456'
371
372
373
-#### Char, Hex, Binary:
+#### Float types:
+```python
367
+{1.23456:10.3f} # ' 1.235'
368
+{1.23456:10.3e} # ' 1.235e+00'
369
+{1.23456:10.3%} # ' 123.456%'
+```
+
+#### Int types:
374
375
{90:c} # 'Z'
376
{90:X} # '5A'
0 commit comments