Question: IN PHYTON Question 11A (8 points) Write a function named double_circle that uses turtle graphics to draw two circles of specified radius that share a
IN PHYTON


Question 11A (8 points) Write a function named double_circle that uses turtle graphics to draw two circles of specified radius that share a common point of origin. (Hint: you may use the turtle method circle.) The function double_circle takes two parameters: t, a turtle that is used to draw the circles. The turtle t may initially be at any location on the screen and in any orientation and may be either up or down. radius, an integer that is the radius of each of the circles 1. 2. The function double_circle should: o dircles, beginning at the initial position and orientation of t 2. leave t in its initial position and orientation when it returns For full credit, you must perform repeated operations using a loop. For example, the following is an example of correct graphical output. import turtle scrn turtle. Screen() turt turtle. Turtle () turt.right (90) double_circle(turt, 100)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
