Answers for "write a program to convert fahrenheit to celsius in python"

-1

how to convert fahrenheit to celsius in python

#!/usr/bin/env python
Fahrenheit = int(raw_input("Enter a temperature in Fahrenheit: "))

Celsius = (Fahrenheit - 32) * 5.0/9.0

print "Temperature:", Fahrenheit, "Fahrenheit = ", Celsius, " C"
Posted by: Guest on October-12-2020

Code answers related to "write a program to convert fahrenheit to celsius in python"

Python Answers by Framework

Browse Popular Code Answers by Language