Overview
This script converts temperature between Fahrenheit to Celsius. To create a python converter for celsius and Fahrenheit, you first have to find out which formula to use.
- How to Use Python to Convert Fahrenheit to Celsius | Python Program to Convert Fahrenheit to Celsius & Vice Versa
- Python Functions Cheat Sheet
- How to Use Python to Convert Miles to Kilometers | Python Program to Convert Miles to KM Unit Measurement
Fahrenheit to Celsius formula:
(°F – 32) x 5/9 = °C or in plain English, First subtract 32, then multiply by 5, then divide by 9.
Celsius to Fahrenheit formula:
(°C × 9/5) + 32 = °F or in plain English, Multiple by 9, then divide by 5, then add 32.
Convert Fahrenheit to Celsius
Read Also: Java Program to Convert Inch to Kilometer and Kilometer to Inch
#!/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"
Convert Celsius to Fahrenheit
#!/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"
Read and understand the script. Happy scripting!