Question: Re-write program for question in last week lab where you were asked to draw the five circles as shown below but this time have

Re-write program for question in last week lab where you were asked to draw the five circles as shown below but this time have one function to draw the circles and you will call this function five times. The function should be called drawCircle () and will accept a value for the radius of the circle and also the color to be used. Have a Word document and show your source code there and Label at the top that this is for question 1. Please make sure that I can read the code. Show ONE output of your program and it MUST be shown separately from the source code. 2 Write a program in Python, using functions, to read values for width, length and height of a box then calculate the volume and total surface area of this close box. Lastly, display values for width, length, height, total surface area and volume. volume = width x length x height area = (2xwidthxlength) + (2xwidthxheight) + (2xlengthxheight) You should have a method called getInput () with the header below to read all values for width, length and height. def getInput (str): That is, call this method three times separately to read the values for width, length and height. The message to be displayed will be passed as an argument.
Step by Step Solution
3.39 Rating (146 Votes )
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
