I did a python course yesterday and I learnt how to make spirographs. They accually looked quite good! I thought that maybe I could try putting them in scratch so I can get some feedback from my followers. So here it is! #-EB- Credits: Python® for existing I copied the pen that I used in Python to try and make this similiar. Please give me feedback in the comments below! P.S. If you want to make one, then here is the code: --------- import turtle turtle.tracer(0) for j in range(90): for i in range(360): turtle.forward(1) turtle.left(1) turtle.left(5) --------- Just muddle with the numbers and Tah Dah, a masterpiece!