dm21.py

Created by adam-y

Created on March 24, 2021

283 Bytes


from turtle import *
from kandinsky import *

speed(10)
hideturtle()

x = 18
c = 225
s = 10
d = 100
a = 0

while a < 10:
  while x > 0:
    pencolor(c,c,c)
    pensize(s)
    circle(d)
    x = x - 1
    right(20)
  x = 18
  c = c - 25
  s = s - 1
  d = d - 10
  a = a + 1