Question: In python 3, Write a function that takes a number of cups, converts to ounces, and returns the ounces. One cup is eight ounces. The
In python 3,
Write a function that takes a number of cups, converts to ounces, and returns the ounces. One cup is eight ounces.
The main thing to note here is that you are returning something. There are no prints within this code. If you would like to test your result you can add the line print(cupsToOunces(6)) outside of the function at the bottom of the code. (outside of the function is no indentation before)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
