Bernard Delmée <[EMAIL PROTECTED]> wrote:
>
>Is there a simple way to modify the default sprintf mask
>used for floats ? (eg something like sys.float_mask = '%.2f')
>I've tried assigning to float.__dict__[ '__str__' ], but
>that's apparently not allowed.

No.  The mask string is passed relatively directly to sprintf, with no
hidden charges or destination fees.  %f gets you the whatever your C
library does by default.

This is one way, but there are more efficient methods:

    FLT = "%.2f"
    print ("abc="+FLT+" def="+FLT) % (3.0,4.5)

Are you trying to do currency?  There are better ways, using the locale
methods.
-- 
- Tim Roberts, [EMAIL PROTECTED]
  Providenza & Boekelheide, Inc.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to