
# Christina Schneider# Python Turtle (3D Box)# 2-25-25import turtlet = turtlet.pensize(3)t.hideturtle()#square 1t.goto(0,0)t.goto(-120, 0)t.goto(-120, 120)t.goto(0,120)t.goto(0,0)#square 2t.goto(0, -120)t.goto(120, -120)t.goto(120, 0)t.goto(0, 0)#connect top linet.penup()t.goto(0, 120)t.pendown()t.goto(120, 0)#connect bottom linet.penup()t.goto(-120, 0)t.pendown()t.goto(0, -120)#connect all linest.penup()t.goto(-120, 120)t.pendown()t.goto(120, -120)