Programming Fundamentals/Variables/Python3

From Wikiversity
Jump to navigation Jump to search

variables.py[edit | edit source]

# 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[edit | edit source]

Copy and paste the code above into one of the following free online development environments or use your own Python3 compiler / interpreter / IDE.

See Also[edit | edit source]