Create a Turtle graphics window with specific size.
import turtle
windows = turtle.Screen()
turtle.setup(1000,600)
geekyTurtle = turtle.Turtle()
windows.bgcolor('yellow')
for i in range(6):
geekyTurtle.forward(90)
geekyTurtle.left(300)
OUTPUT