Learn how to quickly and easily draw a square spirograph using the Turtle module in Python.
⭐ Kite is a free AI-powered coding assistant that will help you code faster and smarter. The Kite plugin integrates with all the top editors and IDEs to give you smart completions and documentation while you’re typing. I've been using Kite for 6 months and I love it! https://www.kite.com/get-kite/?utm_medium=referral&utm_source=youtube&utm_campaign=geektutorials&utm_content=description-only
~ CODE ~
from turtle import *
speed(0)
bgcolor("black")
pensize(3)
for x in range(5):
for colours in ["red", "magenta", "blue", "cyan", "green", "yellow", "white"]:
color(colours)
left(12)
for i in range(4):
forward(200)
left(90)
hideturtle()