Question: in python 1/2. What is the output of this program if the inputs are 45 and 113, respectively? 1 celsius = float (input (Enter a
in python
1/2. What is the output of this program if the inputs are 45 and 113, respectively? 1 celsius = float (input ("Enter a Celsius temperature: ")) 2 fahrenheit = ( 9.0 / 5.0 ) * celsius + 32 3 print ("That is equal to", format (fahrenheit, '.2f') , "degrees Fahrenheit.") 4 fahrenheit = float (input(" Enter a Fahrenheit temperature: ")) 5 celsius = ( 5.0 / 9.0 ) (fahrenheit - 32) 6 print (fahrenheit) 7 print (celsius) 8 print (That is equal to", format (celsius .2f') "degrees Celsius.") Your
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
