Plotting Your Python Turtle Shape

Here are the steps to drawing a specific shape in Python:

  1. lift the pen/line1.penup()
  2. go to the start/line1.goto(x,y)
  3. put the pen down/line1.pendown()
  4. set the pen color/line1.pencolor(“green”)
  5. set the line thickness/line1.pensize(“5”)
  6. set the line color/line1.fillcolor(“red”)
  7. start the fill color/line1.begin_fill()
  8. draw your shape
  9. end fill/line1.end_fill()
  10. lift the pen/line1.penup()
  11. go to the start of the next shape/line1.goto(x,y)