Skip to content

Instantly share code, notes, and snippets.

@jatinsharrma
Created July 13, 2019 16:54
Show Gist options
  • Save jatinsharrma/e37f2f8b6dbcf8c61f8e40403a6d7090 to your computer and use it in GitHub Desktop.
Save jatinsharrma/e37f2f8b6dbcf8c61f8e40403a6d7090 to your computer and use it in GitHub Desktop.
Python program that converts temperature in Celsius to Fahrenheit and vice versa. Implement the requirements using functions.
def temprature(temp):
celsius = (temp - 32)*(5/9)
return(celsius)
print(temprature(10))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment