Question: Implement the function: ( Python ) convert _ units ( celsius _ value, units ) that accepts two arguments, a float ( celsius _ value

Implement the function: (Python)
convert_units(celsius_value, units)
that accepts two arguments, a float (celsius_value) and an int (units).
The function will return the supplied temperature, converted as specified to a float:
- If units =0, return temperature in Celsius (no change)
- if units =1, return temperature in Fahrenheit
- if units =2, return temperature in Kelvin
Prompt the user for the Celsius temperature and units in main(), the unit-test code. Validate units in convert_units, if the user enters an invalid units value (something other than 0,1,or 2 convert_units must return an error code (I recommend that you return None) to main() and main() will tell the user and then end the program. None is a object type in Python that has only one value, None. In the real world, you would also want to check for valid values for celsius_value. Don't worry about prompting the user to reenter the units, just tell them to run the program again. When we learn about loops, we will prompt again when invalid input is presented.
Note that convert_units() must return a float (floating point number), or an error code. This float is the result of the conversion done by the convert_units() function. Your convert_units() function performs the computation based on the arguments passed and the main() function will handle all of the input.

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!