Skip to content

Instantly share code, notes, and snippets.

@d0mmie
Created January 8, 2021 13:45
Show Gist options
  • Save d0mmie/9719360471aa150ceae7837b54eb3f3d to your computer and use it in GitHub Desktop.
Save d0mmie/9719360471aa150ceae7837b54eb3f3d to your computer and use it in GitHub Desktop.
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