Question: In the third code cell, call the function three times by passing each of the Fahrenheit temperatures 212, 100, 32, and 10 to your Celsius()
In the third code cell, call the function three times by passing each of the Fahrenheit temperatures 212, 100, 32, and 10 to your Celsius() function, one at a time, and use the print() function to display the results.

In [1]: # Define the Celsius function below: # Define the Celsius function: def Celsius (fah_temp): return (fah_temp-32) *5/9 In [2]: # Use the Celsius function defined above to convert the temperature 80 Fahrenheit to celsius: Celsius(80) Out[2]: 26.666666666666668 In [5]: # call the Celsius function to convert the temperatures 212, 100, 32 and 10 Fahrenheit to Celsius # and use the print function to display the results: Celsius (212) Celsius (100) Celsius (32) Celsius (10) print()
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
