Skip to content

Instantly share code, notes, and snippets.

@MikiYamFos
Last active August 29, 2015 14:00
Show Gist options
  • Save MikiYamFos/11090611 to your computer and use it in GitHub Desktop.
Save MikiYamFos/11090611 to your computer and use it in GitHub Desktop.
A little Celsius to Fahrenheit Converter in Python
celtemp = raw_input("What is the temperature in Celsius?")
farentemp = (int(celtemp) * 9)/ 5 + 32
print str(farentemp) + "degrees Fahrenheit"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment