Short-circuit Logic

Chris Angelico rosuav at gmail.com
Wed May 29 10:32:34 EDT 2013


On Thu, May 30, 2013 at 12:27 AM, Ahmed Abdulshafy <abdulshafy at gmail.com> wrote:
> Well, this is taken from my python shell>
>
>>>> 0.33455857352426283 == 0.33455857352426282
> True


>>> 0.33455857352426283,0.33455857352426282
(0.3345585735242628, 0.3345585735242628)

They're not representably different.

ChrisA



More information about the Python-list mailing list