On Aug 9, 6:31�am, Will Rocisky <[EMAIL PROTECTED]> wrote:
> I want my 76.1 to be rounded to decimal 80 and 74.9 to decimal 70.
> How can I achieve that?

>>> print '%.0e' % 74.9
7e+01
>>> print '%.0e' % 76.1
8e+01
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to