from turtle import * setup() title("turtle test") clear() #DRAW A SQUARE down() #pen down forward(50) #move forward 50 units right(90) #turn right 90 degrees forward(50) right(90) forward(50) right(90) forward(50)
from turtle import * setup() title("turtle test") clear() #DRAW A SQUARE down() #pen down forward(50) #move forward 50 units right(90) #turn right 90 degrees forward(50) right(90) forward(50) right(90) forward(50)