How are turtle and Turtle different from each other in python version 2.7?
import turtle star = turtle.Turtle() for i in ran
turtle is the name of the package while Turtle is the name of the class.
turtle
Turtle
An alternate way of importing the module would be:
import turtle.Turtle
Also, are you sure the last line is turtle.done() and not star.done()?
turtle.done()
star.done()