Program:
C=int(input("Enter the temperature in Celsius : "))
F=1.8*C+32
print("Temperature in Fahrenheit = ", F)
Output:
Enter the temperature in Celsius : 5
Temperature in Fahrenheit =41
Program to input temperature in Celsius and convert it into Fahrenheit Video
Comments