[issue12332] Float division

2011-06-14 Thread Carmine Paolino
Carmine Paolino added the comment: Thank you for your help. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12332] Float division

2011-06-14 Thread Benjamin Peterson
Benjamin Peterson added the comment: Yep. See http://docs.python.org/tutorial/floatingpoint.html -- nosy: +benjamin.peterson resolution: -> invalid status: open -> closed ___ Python tracker __

[issue12332] Float division

2011-06-14 Thread Carmine Paolino
Carmine Paolino added the comment: When I try to run 3*0.2 in Python shell or using an IDLE document, the result given is 0.6001. -- ___ Python tracker ___

[issue12332] Float division

2011-06-14 Thread Carmine Paolino
New submission from Carmine Paolino : Trying to run this simple script: for i in range(10): print(i*0.2) when i is 3, the result given is 0.6001. What could the problem be? -- components: Interpreter Core messages: 138311 nosy: cancelliere priority: normal severity: norma