I want to pad some percentage values so that there are always 3 units before the decimal place. With ints I could use '%03d' - is there an equivalent for floats?
'%.3f' works for after the decimal place but '%03f' does nothing.
|
|
|
|
|
|
|
'%03.1f' works (1 could be any number, or empty string):
Note that the field width includes the decimal and fractional digits. |
||
|
|
|
You could use zfill as well,.
|
||
|
|