
# Christina Schneider# Python Turtle (Triangles)# 2-25-25import turtlet = turtlet.pensize(3)t.hideturtle()t.pencolor('black')t.penup()#point 1t.goto(-120,-80)t.pendown()#point 2t.goto(0, 140)#point 3t.goto(120, -80)#back to point 1t.goto(-120, -80)t.begin_fill()t.color('green')t.goto(0, 40)t.goto(120,-80)t.goto(-120, -80)t.end_fill()t.pencolor('black')t.goto(120,-80)t.goto(0,40)t.goto(-120,-80)