The code for the given assignment is noted down.
Python is a language particularly used in Data Analysis and Machine Learning on the websites available like CodeHS.
def circles():
radius = 125
penup()
setposition(0,-75)
pendown()
for i in range(4):
color_choice = input("What Should The Color Be?: ")
radius = radius - 25
color(color_choice)
begin_fill()
circle(radius)
end_fill()
penup()
left(90)
forward(25)
right(90)
pendown()
circles()
Thus, this is the code for the given assignment.
Learn more about CodeHS Python.
https://brainly.com/question/15198605
#SPJ2