Turtle, drawing square


import turtle

t = turtle.Turtle()
for c in ['red', 'black', 'yellow', 'green']:
t.color(c)
t.forward(75)
t.left(90)