Copy and paste this in python: import turtle from itertools import cycle turtle.hideturtle() turtle.speed(2000) colors = cycle(['red', 'orange', 'yellow', 'green', 'blue', 'purple']) def draw_circle(size, angle, shift): turtle.pencolor(next(colors)) turtle.circle(size) turtle.right(angle) turtle.forward(shift) draw_circle(size + 5, angle + 1, shift + 0.25) turtle.bgcolor('black') turtle.speed('fast') turtle. pensize(4) draw_circle(30, 0, 1) turtle.pencolor('red') turtle.circle(30) Also copy and pate this: import turtle as t import time from random import randrange sprite1 = t.Turtle() sprite1.shape('circle') sprite1.color('green') sprite1.penup() xrand = randrange(-500, 500) sprite1.hideturtle() sprite1.goto(x=xrand, y=525) sprite1.showturtle() time.sleep(3)