float print formatting

hg hg at nospam.org
Tue Feb 13 02:17:54 EST 2007


Neil Cerutti wrote:

> On 2007-02-13, hg <hg at nospam.org> wrote:
>> Hi,
>>
>> Considering the float 0.0, I would like to print 00.00.
>>
>> I tried '%02.02f' % 0.0 ... but I get 0.00
>>
>> Any clue ?
> 
> Yes. How wide (total) is "0.00", compared to "00.00"?
> 
> --
> Neil Cerutti

I do not get it


s = '%02.02f' % 0.0
s
>> '0.00'
len(s)
>> 4





More information about the Python-list mailing list