Python program to convert the temperature in degree centigrade to Fahrenheit

 

Python program to convert the temperature in degree centigrade to Fahrenheit


c = input(" Enter temperature in Centigrade: ") f = (9*(int(c))/5)+32 print(" Temperature in Fahrenheit is: ", f)

Comments