Design Using Python Turtle

Source Code import turtle import random from turtle import * speed ( 1000 ) turtle . colormode ( 255 ) turtle . bgcolor ( "black" ) R = 0 G = 0 B = 0 begin_fill () # goto(-10,-200) for i in range ( 20 ) : R = random . randrange ( 0 , 257 , 10 ) B = random . randrange ( 0 , 257 , 10 ) G = random . randrange ( 0 , 250 , 10 ) pensize ( 2 ) # goto(0,0) color ( R , G , B ) circle ( i + 180 ) circle ( i + 150 ) circle ( i + 120 ) circle ( i + 90 ) circle ( i + 90 ) circle ( i + 60 ) circle ( i + 30 ) circle ( i - 180 ) circle ( i - 150 ) circle ( i - 120 ) circle ( i - 90 ) circle ( i - 60 ) circle ( i - 30 ) circle ( i ) penup () goto ( 298 , 3 ) pendown () for i in range ( 90 ) : R = random . randrange ( 0 , 257 , 10 ) B = random . randrange ( 0 , 257 , 10 ) G = random . randrange ( 0 , 257 , 10 ) color ( R , G , B ) circle ( i , 360 ) right ( - 90 ) penup () goto ( - 298 , 3...