import turtle #creating a square with turtle t = turtle.Turtle() t.forward(100) t.color('blue') t.right(90) t.forward(100) t.right(90) t.forward(100) t.right(90) t.forward(100)