Skip to main content

Posts

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

ads1

Python basic ,8. Write a Python program to enter temperature in Fahrenheit and convert to Celsius.

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

ads2