473,503 Members | 1,849 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

cpython list __str__ method for floats

returns poorly formatted values:
>>>str(13.3)
'13.3'
>>>str([13.3])
'[13.300000000000001]'

[david]
Sep 11 '07 #1
6 1250
On Sep 11, 4:07 am, "[david]" <da...@nospam.spamwrote:
returns poorly formatted values:
>>>str(13.3)
'13.3'
>>>str([13.3])
'[13.300000000000001]'

[david]
There is some difference in the way repr() and str() convert floats to
strings:
>>a = 13.3
print str(a)
13.3
>>print repr(a)
13.300000000000001
>>a
13.300000000000001
>>a.__str__()
'13.3'
>>a.__repr__()
'13.300000000000001'
>>>
Sep 11 '07 #2
[david] wrote:
returns poorly formatted values:
Please explain.
>>>str(13.3)
'13.3'
>>>str([13.3])
'[13.300000000000001]'
This is quite a FAQ.

str of a float returns the float, rounded to decimal precision.

str of a list returns a square brackets enclosed enumeration of the
contents (using repr on them). repr of a float returns the float in
full precision.

Regards,
Björn

--
BOFH excuse #442:

Trojan horse ran out of hay

Sep 11 '07 #3
Bjoern Schliessmann wrote:
[david] wrote:
>returns poorly formatted values:

Please explain.
> >>>str(13.3)
'13.3'
> >>>str([13.3])
'[13.300000000000001]'

This is quite a FAQ.

str of a float returns the float, rounded to decimal precision.

str of a list returns a square brackets enclosed enumeration of the
contents (using repr on them). repr of a float returns the float in
full precision.

Regards,
Björn
contents (using repr on them). repr of a float returns the float in
full precision.
But of course it doesn't, as illustrated, which is the whole point.

It returns a string at greater than full precision.

Leaving aside the question of why str should return repr,
13.300000000000001 is not 'the float in full precision':
it is an arbitrary translation of the float.

The idea that 13.3 is a 'rounded' value for the number,
and that 13.300000000000001 is not a 'rounded' value of
the number, is a common error of intuitive mathematics.

I hope that when you say that this is a FAQ, you don't
mean that the community has solidified on this naive
interpretation :~)
[david]
Sep 12 '07 #4
[david] wrote:
Leaving aside the question of why str should return repr,
str doesn't "return" repr. str returns a "nice string
representation" of an object. This "nice string representation" of
a list is the opening square bracket, the repr of its contents
seperated by comma, and the closing square bracket.
<prayer-mill>Here, it *only* makes sense to have a list printed
with the repr of their contents.</prayer-mill>
13.300000000000001 is not 'the float in full precision':
it is an arbitrary translation of the float.
Do you know IEEE 754?
The idea that 13.3 is a 'rounded' value for the number,
and that 13.300000000000001 is not a 'rounded' value of
the number, is a common error of intuitive mathematics.
I'm intrigued how /you/'d explain this, please do explain.
I hope that when you say that this is a FAQ, you don't
mean that the community has solidified on this naive
interpretation :~)
No, I mean that your complaint is not at all new. Reading the
archives you could have learned a lot about this topic.

Regards,
Björn

--
BOFH excuse #247:

Due to Federal Budget problems we have been forced to cut back on
the number of users able to access the system at one time. (namely
none allowed....)

Sep 12 '07 #5
Bjoern Schliessmann <us**************************@spamgourmet.com>
wrote:
>The idea that 13.3 is a 'rounded' value for the number,
and that 13.300000000000001 is not a 'rounded' value of
the number, is a common error of intuitive mathematics.

I'm intrigued how /you/'d explain this, please do explain.
I think he is correct here: 13.300000000000001 is not exactly
representable in IEEE 754. It is a rounded approximation to the true
value just as is 13.3.

An argument can be made that instead of rounding the internal value to
17 digits which is sufficient to ensure that you can roundtrip float->
string->float for all values, you could just round it to the minimum
number of digits which guarantee the float->string->float roundtrip for
that particular value.

Consider this as we gradually lose the more significant digits we see
that last digit wasn't exactly 1 at all:
>>13.3
13.300000000000001
>>13.3-13
0.30000000000000071
>>(13.3-13)*10-3
7.1054273576010019e-015

but why shouldn't Python do this instead?:
>>13.3
13.3
>>13.3-13
0.3
>>(13.3-13)*10-3
7.1054273576e-015

These values will still roundtrip to the exact same internal
representations. BTW, I didn't have to work too hard to figure out what
that last value should be, the first is cut/paste from CPython, the
second is what IronPython gives you.

I believe the claim is that using the full 17 digits ensures the round-
tripping works even if you serialise and deserialise on different
systems, so perhaps we all pay a cost in our interactive sessions for
something which should really be buried deep in IPC code.

Sep 12 '07 #6
On Sep 12, 10:59 pm, Duncan Booth <duncan.bo...@invalid.invalid>
wrote:>

[snip]
I believe the claim is that using the full 17 digits ensures the round-
tripping works even if you serialise and deserialise on different
systems, so perhaps we all pay a cost in our interactive sessions for
something which should really be buried deep in IPC code.
IPC? Most data transfer between systems in the real world is done
using CSV files :-)

Sep 12 '07 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
1745
by: Matthew Walsh | last post by:
Whats wrong with the following code? using pythonWin I get the following error: Traceback (most recent call last): File "C:\Python23\Lib\site-packages\pythonwin\pywin\framework\scriptutils.py",...
1
1466
by: Edward C. Jones | last post by:
#! /usr/bin/env python class A(list): def __init__(self, alist, n): list.__init__(self, alist) self.n = n def __str__(self): return 'AS(%s, %i)' % (list.__str__(self), self.n)
6
1665
by: ahart | last post by:
I'm pretty new to python and am trying to write a fairly small application to learn more about the language. I'm noticing some unexpected behavior in using lists in some classes to hold child...
11
5190
by: Andy Watson | last post by:
I have an application that scans and processes a bunch of text files. The content I'm pulling out and holding in memory is at least 200MB. I'd love to be able to tell the CPython virtual machine...
0
7205
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7093
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7348
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
7467
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5592
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
3175
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3166
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1519
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
744
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.