import turtle count = 1 while count <= 3: turtle.forward(100) turtle.right(120) count +=1 turtle.left(60) turtle.forward(100) count = 1 while count <= 3: turtle.right(120) turtle.forward(200) count +=1