+ 1
Why this prints false ?🤔
Type in your code editor :- a = 4.20 b = 2.10 print(a + b == 6.30) Console :- False
2 odpowiedzi
+ 4
Because a+b gives 6.30000000000001 , and it's not equal to 6.30
0
In Computer, processing is not like normal adding and subtracting things