Programming Fundamentals/Variables/Python3
variables.py
edit# This program converts a Fahrenheit temperature to Celsius.
#
# References:
# https://www.mathsisfun.com/temperature-conversion.html
# https://en.wikibooks.org/wiki/Python_Programming
print("Enter Fahrenheit temperature:")
fahrenheit = float(input())
celsius = (fahrenheit - 32) * 5 / 9
print(str(fahrenheit) + "° Fahrenheit is " + str(celsius) + "° Celsius")
Try It
editCopy and paste the code above into one of the following free online development environments or use your own Python3 compiler / interpreter / IDE.