this is a functional turtle module from the coding language python ***commands*** note: in the instructions, "num" is a varible that can be set to any number forward(num): moves the turtle forward num steps eg. forward(10) backward(num): moves the turtle backwards num steps eg. backward(10) direction(num):points the turtle in a specific direction eg. direction(90) pendown(): pen down penup(): pen up pensize(num): sets the pensize to num (max pensize is ten) eg. pensize(5) pencolor("color"): sets the color of the pen to neither blue, green, yellow, red, or black eg. pencolor("red") turtlecolor("color"): sets the color of the turtle to neither blue, green, yellow, red, or black eg. turtlecolor("blue") stamp(): stamps the turtle onto the stage done() OR break: stops everything reset(): resets the turtle to its starting position, and clears the pen marks If its not working, check your typing, or maybe that is just not a command in this module.
got the python code from https://docs.python.org/3.2/library/turtle.html please report any glitches in the comments.