top of page
Writer's pictureRajesh Singh

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


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




55 views0 comments

Recent Posts

See All

Comments


bottom of page