Vidyalelo
Python · Q93

Module in Python

Programming · Python · question 93

Q93

What will be the output shape of the following Python code? import turtle t=turtle.Pen() for i in range(0,6): t.forward(100) t.left(60)

A.
Hexagon
Answer
B.
Octagon
C.
Pentagon
D.
Heptagon

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board