Question: Write a program called fToC.py that asks the user for a temperature in Fahrenheit and converts it to Celsius. Details: The lowest possible Fahrenheit temperature

Write a program called
fToC.py that asks the user for a temperature in Fahrenheit and converts it to Celsius.
Details:
The lowest possible Fahrenheit temperature is 459.67. There is no upper limit.
If the user enters a Fahrenheit temperature, your program should ask them for an input again. Your program should keep asking until the user enters a temperature greater than or equal to -459.67. You should use a while loop like we did in Friday's lecture.
The equation for converting F to C is: C=(F-32)**59
You should use functions to organize your code.
Examples
Example 1: 32 Fahrenheit is 0 Celsius.
Enter a Fahrenheit temperature: 32
32.0F=0.0C
 Write a program called fToC.py that asks the user for a

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!