In article <[EMAIL PROTECTED]>,
[EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
>>>> a
>12.33333
>>>> print '%0.2f' % a
>12.33
>>>> a = 1
>>>> print '%0.2f' % a
>1.00

>>> '%.2f' % 1
'1.00'
-- 
Aahz ([EMAIL PROTECTED])           <*>         http://www.pythoncraft.com/

"Many customs in this life persist because they ease friction and promote
productivity as a result of universal agreement, and whether they are
precisely the optimal choices is much less important." --Henry Spencer
http://www.lysator.liu.se/c/ten-commandments.html
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to