Question: Using Python Write a program that converts Celsius temperatures to Fahrenheit temperatures and vice versa. The formula is as follows: F = ((9/5) * C)
Using Python
Write a program that converts Celsius temperatures to Fahrenheit temperatures and vice versa. The formula is as follows: F = ((9/5) * C) +32 C = (F 32) * 5/9 Your program should ask the user to choose from a menu that gives them a choice of what conversion they would like. The choices should be numbered, and the user should enter the choice number. Depending on the choice, your program should prompt the user to enter a temperature in Celsius or in Fahrenheit, perform the calculation and then display the temperature converted. Make sure your output is clearly labeled by adding explanation text next the values printed. Make sure that you program itself is well documented by adding comments throughout your code.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
