
# Christina Schneider# Python Turtle (Box with Dots and Dashes)# 2-25-25import turtlet = turtlet.pensize(1)t.hideturtle()#point 1 (top left)t.penup()t.goto(-120, 120)t.pendown()t.dot()#point 2 dash (top right)t.goto(-110, 120)t.penup()t.goto(-100, 120)t.pendown()t.goto(-80, 120)t.penup()t.goto(-70, 120)t.pendown()t.goto(-50, 120)t.penup()t.goto(-40, 120)t.pendown()t.goto(-30, 120)t.dot()#point 3 (right line - bottom right)t.goto(-30, 40)t.dot()#point 4 dash (bottom line)t.goto(-40, 40)t.penup()t.goto(-50, 40)t.pendown()t.goto(-70, 40)t.penup()t.goto(-80, 40)t.pendown()t.goto(-100, 40)t.penup()t.goto(-110, 40)t.pendown()t.goto(-120, 40)t.dot()#close square - back to point 1t.goto(-120, 120)#line top left to bottom rightt.goto(-30, 40)#line top right to bottom leftt.penup()t.goto(-30, 120)t.pendown()t.goto(-120, 40)#dot in the middlet.penup()t.goto(-75, 80)t.pendown()t.dot()