diff --git a/circle.py b/circle.py new file mode 100644 index 0000000000000000000000000000000000000000..96bc9a1eaddb31240e4112158f4e9f9a5960ca12 --- /dev/null +++ b/circle.py @@ -0,0 +1,13 @@ +import turtle +import random +t = turtle.Turtle() +t.speed('fastest') +colour = ['black', 'blue', 'gray', 'yellow', 'red', 'green', 'light blue', 'dark blue', 'dark red', 'orange'] + + +for i in range(100, 0, -1): + t.fillcolor(colour[random.randint(0, 9)]) + t.begin_fill() + t.circle(i) + t.end_fill() +turtle.mainloop()