Answer:
Step-by-step explanation:
import turtle
# Ask the user for the number of times they want the circle to increase in size
times = int(input("How many times do you want the circle to increase in size? "))
# Create a turtle object
t = turtle.Turtle()
# Use a for loop to draw the circle multiple times
for i in range(times):
# Increase the size of the circle by 10 each time
t.circle(10*i)
# Keep the turtle window open
turtle.mainloop()