top of page

Python program to input temperature in Celsius and convert it into Fahrenheit.

  • Writer: Rajesh Singh
    Rajesh Singh
  • May 21, 2021
  • 1 min read

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




Recent Posts

See All

Commentaires


bottom of page