files
This commit is contained in:
17
python/9a-temperature-converter/README.md
Normal file
17
python/9a-temperature-converter/README.md
Normal file
@ -0,0 +1,17 @@
|
||||
Temperature Converters
|
||||
======================
|
||||
|
||||
###Fahrenheit to Celsius
|
||||
Write a function that converts fahrenheit temperatures to celsius. The equation to do this is:
|
||||
|
||||
C = (F - 32) * 5/9
|
||||
|
||||
###Celsius to Fahrenheit
|
||||
|
||||
Write a similar function that converts celsius to fahrenheit. The equation:
|
||||
|
||||
F = (C * 9/5) + 32
|
||||
|
||||
###Testing
|
||||
|
||||
Make sure the tests pass. Write 3 of your own tests.
|
Reference in New Issue
Block a user