Email your completed assignment (i.e., attach your script file) from your preferred class email address to marctomlinson@mail.utexas.edu.
1. Rewrite your Celsius and Fahrenheit converter from the previous assignment as functions. Instead of using raw_input, call these functions with a argument.
2. Write a function that prompts the user to enter in a Fahrenheit temperature, call the function from question 1 to convert it to Celsius, then call the other function to convert back to Fahrenheit, then print out the final result.
3. Write a function that takes a number as its argument and multiples it by 4.
4. Write a function that take a number and divides it by 2.
5. Compose the functions from questions 3 and 4 together so that the initial argument is returned as the final result as in question 2.