# Python program to draw square 
# using Turtle Programming
import turtle 
skk = turtle.Turtle()

for i in range(4):
	skk.forward(50)
	skk.right(90)
	
turtle.done()

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: