Extra Credit Assignment - Modular Development F to C and C to F
- Due Jan 14, 2021 by 11:59pm
- Points 0
- Submitting a text entry box or a file upload
- Available Jan 4, 2021 at 12am - Jan 15, 2021 at 11:59pm
Modular Payroll Calculation Program
This is a 100 Point Extra Credit Assignment
In this assignment, the solution must include a collection Python Function
A Python function that displays a menu option to convert Fahrenheit value to a Celsius value or to convert a Celsius value to a Fahrenheit value. The menu should permit the user to make the selection and enter in the value that they want to convert. The function should then invoke the appropriate function to convert the value.
A Python function that receives a Fahrenheit value as a parameter, converts the value to a Celsius value and returns the Celsius value to the code invoking the function
A Python function that receives a Celsius value as a parameter, converts the value to a Fahrenheit value and returns the Fahrenheit value to the code invoking the function
Finally, the program should display the type of conversion that took place, the entered value, and the converted value
Converting F to C program