A Simple python program to convert farenheit to Celcius

F = int(raw_input("Enter temp in Farenheit : "))
C = (F - 32)* 5/9
print C

No comments:

Post a Comment