print(37.4<(32.0+5.0+0.2+0.2))
This statement gives a True result but I need it should give me a False as the addition of the numbers (32.0+5.0+0.2+0.2) is precisely the same as 37.4 but here it gives the following result 37.400000000000006 for this equation (32.0+5.0+0.2+0.2). Hence, I am getting a True result rather False one.
I am new to python so don't know how to deal with it.
Many thanks