Turtle Graphics

For doing a Turtle Graphics there are 12 stpes to do. however you have to import turtle and random before you continue the rest steps. After you import you have to ser up the window screen by create variable call Wn = turtle.Screen() be carful that  “Screen” first letter had to be uppercase then choose a background color by wn.bgcolor(). Then you have to create a turtle by create a variable name T=turtle.Turtle() also choose color for this turtle by T.pencolor(). Last stpe by use range for loop. For example for I in range(100): then you create a location in (0,45) and (0,150).In those location the Turle will move to different place.

turtle