Here are the steps to drawing a specific shape in Python:
- lift the pen/line1.penup()
- go to the start/line1.goto(x,y)
- put the pen down/line1.pendown()
- set the pen color/line1.pencolor(“green”)
- set the line thickness/line1.pensize(“5”)
- set the line color/line1.fillcolor(“red”)
- start the fill color/line1.begin_fill()
- draw your shape
- end fill/line1.end_fill()
- lift the pen/line1.penup()
- go to the start of the next shape/line1.goto(x,y)