This commit is contained in:
Armen Vartan
2014-12-01 12:17:43 -05:00
parent 89e5a5f4b0
commit b9a8397f34
124 changed files with 2918 additions and 0 deletions

View File

@ -0,0 +1,12 @@
def fahrenheit_to_celsius(temp):
pass
def celsius_to_fahrenheit(temp):
pass
assert(fahrenheit_to_celsius(32) == 0), "Freezing temp should return true"
assert(fahrenheit_to_celsius(212) == 100), "Boiling temp should return true"
assert(fahrenheit_to_celsius(-13) == -25), "Negative number should return true"
assert(celsius_to_fahrenheit(37) == 98.6), "Body temp should return true"
assert(celsius_to_fahrenheit(10) == 50), "Random temp should return true"