This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author tryme
Recipients tryme
Date 2015-10-26.08:14:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1445847262.11.0.792420097545.issue25480@psf.upfronthosting.co.za>
In-reply-to
Content
I am new to python and I don't know if it really is a bug. But indeed when I see sth is not right it is worthwhile to point out.

Using fresh installed ubuntu desktop with build in python3.
typing the command line by line in terminal just for learning. below is the scene
it has automatically round down. Don't know if it is limit of float.


$ python3
Python 3.4.3 (default, Oct 14 2015, 20:28:29) 
[GCC 4.8.4] on linux
Type "help", "copyright", "credits" or "license" for more information.

>>> "hello{0:5.2f}".format(100000000000000.234)
'hello100000000000000.23'
>>> "hello{0:5.2f}".format(4111111111111111117.234)
'hello4111111111111111168.00'
>>> "hello{0:5.2f}".format(1000000000000000000.234)
'hello1000000000000000000.00'
History
Date User Action Args
2015-10-26 08:14:22trymesetrecipients: + tryme
2015-10-26 08:14:22trymesetmessageid: <1445847262.11.0.792420097545.issue25480@psf.upfronthosting.co.za>
2015-10-26 08:14:22trymelinkissue25480 messages
2015-10-26 08:14:21trymecreate