Go to pythonroom.com and copy-paste the code below in the notes. The outcome, if you wait for it to render, will be an red, green, and blue spiral. Coding all by me
import turtle t = turtle.Turtle() t.speed(0) c = 0 def spiral(color): t.setpos(0,0) t.color(color) for a in range(90): t.forward(a/2) t.right(4) t.width(a/1.8) for i in range(3): c = 0 for r in range(30): c = c + 1 if r < 11: spiral("#0000"+str(c)+"0") else: if r < 21: spiral("#00"+str(c-10)+"000") else: spiral("#"+str(c-20)+"00000") t.right(6)