Answers for "how to convert fahrenheit to celsius python"

1

how to convert fahrenheit to celsius in python

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

Fahrenheit = 9.0/5.0 * Celsius + 32

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

Code answers related to "how to convert fahrenheit to celsius python"

Python Answers by Framework

Browse Popular Code Answers by Language