Python, want to print float in exact format +-00.00

14,634

Solution 1

Use '%+06.2f' to set the width and precision appropriately. The equivalent using new-style format strings is '{:+06.2f}'.format(n) (or '{0:+06.2f}' if your version of Python requires the positional component).

Solution 2

'%+06.2f' % 1.1123344

+ means always use sign
0 means zero fill to full width.
6 is the total field width including sign and decimal point
.2 means 2 decimals.
f is float
Share:
14,634
fred basset
Author by

fred basset

Engineer working with C, C++, assembler and embedded hardware.

Updated on June 07, 2022

Comments

  • fred basset
    fred basset almost 2 years

    I need to format a float to the format +-00.00, tried the basic string formatting but can't get the leading + or - sign or two leading 0s if the value is fractional, any pointers?