Programming Fundamentals/Variables/Python3
Appearance
(Redirected from Computer Programming/Variables/Python3)
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.
- GDB Online
- Ideone
- InterviewBit
- paiza.IO
- Programiz
- PythonTutor
- Python Fiddle
- repl.it
- RexTester
- Trinket
- TutorialsPoint
- Python Online
- Python Playground
- LabEx
- Python-Fiddle
- Python Sandbox