Created
January 8, 2021 13:43
-
-
Save d0mmie/1375c7b80847eea829727f31f62100fe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
f_temp = float(input("Input temperature in Fahrenheit: ")) | |
print("%.2f Farenheit = %.2f Celcius" % (f_temp, (f_temp - 32) * 5 / 9)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment