from turtle import * bgcolor("black") penup() left(90) forward(100) left(270) pendown() speed(0) def green_circle(): color(("green"),("green")) begin_fill() pensize(0) begin_fill() circle(5) end_fill() penup() forward(14.6) pendown() green_circle() green_circle() penup() right(180) forward(45) right(270) forward(15) right(270) pendown() green_circle() green_circle() green_circle() penup() right(180) forward(60) right(270) forward(15) right(270) pendown() green_circle() green_circle() green_circle() green_circle() penup() right(180) forward(60) right(270) forward(15) right(270) pendown() green_circle() green_circle() green_circle() penup() right(180) forward(155) right(270) forward(15) right(270) pendown() green_circle() green_circle() green_circle() green_circle() right(30) green_circle() right(5) green_circle() left(30) green_circle() green_circle() green_circle() left(30) green_circle() green_circle() green_circle() right(30) green_circle() green_circle() right(30) green_circle() green_circle() left(280) green_circle() right(17) green_circle() def yellow_circle(): color(("yellow"),("yellow")) begin_fill() pensize(0) speed(0) begin_fill() circle(5) end_fill() penup() forward(15) pendown() yellow_circle() yellow_circle() left(20) yellow_circle() yellow_circle() def orange_circle(): color(("orange"),("orange")) begin_fill() pensize(0) speed(0) begin_fill() circle(5) end_fill() penup() forward(15) pendown() left(20) orange_circle() left(15) orange_circle() orange_circle() left(15) orange_circle() def red_circle(): color(("red"),("red")) begin_fill() pensize(0) speed(0) begin_fill() circle(5) end_fill() penup() forward(15) pendown() left(15) red_circle() left(15) red_circle() red_circle() right(70) red_circle() def purple_circle(): color(("purple"),("purple")) begin_fill() pensize(0) speed(0) begin_fill() circle(5) end_fill() penup() forward(15) pendown() right(15) purple_circle() purple_circle() right(15) purple_circle() right(5) purple_circle() def blue_circle(): color(("blue"),("blue")) begin_fill() pensize(0) speed(0) begin_fill() circle(5) end_fill() penup() forward(15) pendown() blue_circle() right(10) blue_circle() blue_circle() right(35) blue_circle() right(45) blue_circle() left(20) blue_circle() blue_circle() left(20) blue_circle() blue_circle() left(25) blue_circle() blue_circle() left(5) blue_circle() right(45) blue_circle() right(10) blue_circle() right(10) blue_circle() blue_circle() purple_circle() right(15) purple_circle() right(15) purple_circle() purple_circle() red_circle() right(10) red_circle() red_circle() right(15) red_circle() orange_circle() right(10) orange_circle() right(5) orange_circle() orange_circle() yellow_circle() right(5) yellow_circle() right(5) yellow_circle() right(5) yellow_circle() green_circle()