Algorithmic Art

Charles Cusack
Hope College
Main
Jan 22
Feb 22
Mar 22
Apr 22
May 22
June 22
July 22
Aug 22
Sept 22
Oct 22
Nov 22
Dec 22
Jan 23
Feb 23
Mar 23
Apr 23
May 23
Aug 23
Sep 23
Oct 23
Nov 23
Dec 23
Jan 24
Getting Started with Python Turtle
  1. Download a suitable IDE for working with Python. I use PyCharm
  2. You may also have to download and install Python, but I think recent versions PyCharm will install it for you if it can't find it.
  3. Download the Python Turtle Examples and extract the files.
  4. Drag the three files into the project (or copy them into the appropriate directory).
    1. 001_FirstTurtle.py is very basic and just draws two shapes.
    2. 002_CheckerBoard.py draws a simple checkerboard.
    3. util.py contains a couple of methods that are used in 002_CheckerBoard.py to make the window better. I recommend that you use the getTurtleAndScreen method to get your turtle/screen objects.
  5. Run these and look at the code. Then start making your own!
  6. See Turtle Graphics Documentation to see more about what Turtles can do.
  7. I recommend numbering your files like I did (e.g. 01_FirstTurtle, 02_CheckerBoard, 03_MyCoolOne, etc.), and every time you make tweaks that change it significantly enough, consider copying your file and making a new one so you can keep a history of all of your scripts.