Skip to main content

Posts

Showing posts with the label #Write a Python program to enter temperature in Celsius and convert it into Fahrenheit.

ads1

Python basic,7. Write a Python program to enter temperature in Celsius and convert it into Fahrenheit.

  7. Write a Python program to enter temperature in Celsius and convert it into Fahrenheit. Cel = int(input("Enter the temperature in Celsius :-")) fah = (Cel *9/5)+32 print("The Temperature in Fahrenheit is :- ",fah) Output :-

ads2