CodingForums.com

CodingForums.com (http://www.codingforums.com/index.php)
-   Python (http://www.codingforums.com/forumdisplay.php?f=46)
-   -   weirdness between windows and linux (http://www.codingforums.com/showthread.php?t=99231)

SHY 10-25-2006 06:53 PM

weirdness between windows and linux
 
a m8 of mine was reading thru the python tutorial and while he was trying out some float numbers formatting, he came to a weird result (note: he is using windowsXP):

Code:

>>> print '%0.50f' % (22.0/7.0)
3.14285714285714280000000000000000000000000000000000

this is what i get on linux:

Code:

>>> print '%0.50f' % (22.0/7.0)
3.14285714285714279370154144999105483293533325195312

how the hell is this possible?

Shoot2Kill 10-25-2006 09:02 PM

cos windowze sucks....

rawriddle 11-16-2006 11:26 PM

http://www.cprogramming.com/tutorial...sentation.html

Read that, and you'll have either an understanding or a better idea; if the latter, and you're still interested, do some more research.


All times are GMT +1. The time now is 07:59 AM.

Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.