Created
January 8, 2021 13:45
-
-
Save d0mmie/9719360471aa150ceae7837b54eb3f3d 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
c_temp = float(input("Input temperature in Celcius: ")) | |
print("%.2f Celcius = %.2f Farenheit" % (c_temp, ((c_temp * 9 / 5) + 32))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment