I tried to multiply a float with an int number like this:
>>> 1.2233 * 100
122.33000000000001
1.2233 * 100 = 122.33 but the result in Python is 122.33000000000001.
I tried to multiply a float with an int number like this:
>>> 1.2233 * 100
122.33000000000001
1.2233 * 100 = 122.33 but the result in Python is 122.33000000000001.