New to python and writing a simple code to convert Fahrenheit to Celcius.
Can someone tell me why these two lines of code give different results?
cConvert = (number - 32)/(9/5)
cConvert = (number - 32)/1.8
9/5 = 1.8 but how can I write the code without having to compute 9/5 myself?
Thanks