Classwork/Homework:
Implement the following function fahrenheit to return the Fahrenheit equivalent of a Celsius temperature.
F = (9/5) * C + 32
Use this function to write a program, TemperatureTables_YI.py that prints a chart showing the Fahrenheit equivalents of all Celsius temperature 0-100 degrees. Use one position of precision to the right of the decimal point for the results. Use the “%” to format your output properly.
Add a function celsius to return the Celsius equivalent of a Farenheit temperature.
C = (5/9) * ( F – 32 )
Just like the previous function, print a chart with the Celsius equivalents of all Fahrenheit temperature 0-100 degrees. Use one position of precision to the right of the decimal point for the results. Use the “%” to format your output properly. The program should start with a menu to choose which temperature’s table the user wants to select
Welcome to Farenheit-Celsius Tables
Pres 1 for Farenheit 2 for Celsius and 3 to exit.