)What will be the output shape of the following Python code?
from turtle import *
turtle=Turtle()
screen=Screen()
for i in range(4):
turtle.forward(60)
turtle.left(90



Answer :

Other Questions