was creating a celsius to Fahrenheit calculator and my code is simply:
c = float(input())
f = (c*(9/5))+32
print(f)
However, when I test this code with 52.0 as an input, the output is 126.000000001 instead of just 126.0. Why is this so and how do I fix it?
Thanks.