Python Turtle

1) import turtle
cv=turtle.Screen()
cv.bgcolor(“red”)
t=turtle.Turtle()

t.color(“blue”)
t.pensize(“10”)

t.forward(100)
t.rt(90)
t.fd(100)
t.rt(90)
t.fd(100)
t.rt(90)
t.fd(100)