Wednesday, February 27, 2019

Fahrenheit to Celcius - Python3

ip=int(input("Enter the temperature in fahrenheit:"))
c=(ip-32)*(5/9)
print("temperature from fahrenheit to celcius:",c)

ScreenShot:


No comments:

Post a Comment