Computer Science, asked by venkat2000vala, 4 months ago

Write a python program to convert fahrenheit to

celsius.​

Answers

Answered by dhruvgandhi200
3

Answer:

Fahrenheit=int(input("Enter the temperature in farenheit= "))

Celsius=((Fahrenheit-32)*5)/9

print("Temperature in Celsius is-",Celsius)

Similar questions