Directions for obtaining csturtle

Note: Python has a library called turtle.py that is part of the standard python installation. We strongly encourage you to use this library. However, if the machine that you are using doesn't have turtle, then you can use the almost identical csturtle package. To do so, go to the resources page and get csplot.py and csturtle.py. Put these files in the same directory as the python program that you are writing.

Once you have the csplot.py and csturtle.py file you can use turtle graphics by simply typing from csturtle import *. The commands for csturtle are the same as those for turtle and can be found here.