import turtle tr = turtle.Turtle() tr.pencolor('white') tr.speed(8) for i in range(4): tr.forward(100) tr.right(90) tr.left(130) tr.forward(30) tr.right(130) tr.right(50) tr.forward(30) tr.left(50) tr.forward(100) tr.left(130) tr.forward(30) tr.left(50) tr.forward(100) tr.left(90) tr.forward(100) tr.left(40) tr.forward(30) tr.penup() tr.left(140) tr.forward(100) tr.left(40) tr.forward(40)