Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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.") YourStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started