Python turtle module To check whether you have turtle module, open the Python interpreter and type this: > import turtle > bob = turtle.Turtle() When you run this code, it should create a new window with small arrow that represents the turtle. Close the window. Create a file named mypolygon.py and type in the following code: import turtle bob = turtle.Turtle() print(bob) turtle.mainloop() The turtle module (with a lowercase ’t’) provides a function called Turtle (with an uppercase ’T’) that creates a Turtle object, which we assign to a variable named bob. Printing bob displays something like: <turtle.Turtle object at 0xb7bfbf4c> This means that bob refers to an object with type Turtle as defined in module turtle. mainloop tells the window to wait for the user to do something, although in this case there’s not much for the user to do except close the window. Once you create a Turtle, you can call a method to move it around the window. A method is similar to a function...