|
@ -311,13 +311,13 @@ Format |
|
|
{<el>:>0} # '<el>' |
|
|
{<el>:>0} # '<el>' |
|
|
``` |
|
|
``` |
|
|
|
|
|
|
|
|
### Options Specific to Strings |
|
|
### String Options |
|
|
```python |
|
|
```python |
|
|
{'abcde':.3} # 'abc' |
|
|
{'abcde':.3} # 'abc' |
|
|
{'abcde':10.3} # 'abc ' |
|
|
{'abcde':10.3} # 'abc ' |
|
|
``` |
|
|
``` |
|
|
|
|
|
|
|
|
### Options specific to Numbers |
|
|
### Number Options |
|
|
```python |
|
|
```python |
|
|
{1.23456:.3f} # '1.235' |
|
|
{1.23456:.3f} # '1.235' |
|
|
{1.23456:10.3f} # ' 1.235' |
|
|
{1.23456:10.3f} # ' 1.235' |
|
|
xxxxxxxxxx