Your teacher has asked you to convert a large number of temperature readings from the Celsius to Fahrenheit scale. They have provided you with the formula to use:
F = C * 9/5 + 32
C is temperature measured in degree Celsius
F is temperature is degree Fahrenheit
my code:
c = input("celsius: ")
f = c*9/5+32
print(c," degrees Celcius is ",f," degrees fahrenheit")