+ 1
Why the decimal floating in python is represented in same way as we write .
Python3 programming language.
3 Réponses
+ 1
If i do this in python (using the console) i grt the result:
>>> 1/3
0.3333333333333333
So if you get a result like 0.33333 or 0.33 or whatever length of decimal places you select, there must a kind of rounding be involved.
+ 1
Not quiete clear for me, whtat you want to know. May be one or two samples from you can help us for a better understanding. Thanks!
0
I want to know that why 1/3=0.33333 is not represented as 0.3333 .