Back to Browse

Python Turtle - Circle Spirograph Tutorial

7.6K views
Mar 15, 2020
4:23

Learn how to quickly and easily draw a circle 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(2) for i in range(6): for colours in ["red", "magenta", "blue", "cyan", "green", "yellow", "white"]: color(colours) circle(100) left(10) hideturtle()

Download

1 formats

Video Formats

360pmp45.9 MB

Right-click 'Download' and select 'Save Link As' if the file opens in a new tab.

Python Turtle - Circle Spirograph Tutorial | NatokHD