what is the coding syntax for a shape square code example
Example: python how to draw a rectangle
import turtle
for i in range(2):
turtle.forward(20)
turtle.right(90)
turtle.forward(10)
import turtle
for i in range(2):
turtle.forward(20)
turtle.right(90)
turtle.forward(10)