Question: python programing Write a program that draws a target, such as one that would be used in archery. Ask the user for input for the

python programing

Write a program that draws a target, such as one that would be used in archery. Ask the user for input for the location of the center of the target, as well as the diameter of the bullseye (center yellow) circle. Your target should have four circles, each one a different color. Make each larger circle have a radius that is larger than the next smallest circle by the amount of the radius of the bullseye. You can assume that the user will only enter valid non-negative numbers.

python programing Write a program that draws a target, such as one

Use augmented operators in your program to modify variables xPos, yPos, and radius. To move the turtle to a new position you may only use the following line of code:

turtle.goto(xPos, yPos)

To draw a circle you may only use the following line of code:

turtle.circle(radius)

Rubric

10 pts: User is prompted for input and can enter values properly

10 pts: Target is centered on point given

10 pts: Each circle is the proper size

10 pts: Augmented operators used properly (should use many times!) and only the given functions above should be used to move and draw.

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!