Vidyalelo
Python · Q137

Module in Python

Programming · Python · question 137

Q137

The output of the following Python code is similar to the alphabet . . . . . . . . import turtle t=turtle.Pen() t1=turtle.Pen() t2=turtle.Pen() t.forward(100) t1.forward(100) t2.forward(100) t1.left(90) t1.forward(75) t2.right(90) t2.forward(75)

A.
X
B.
N
C.
T
Answer
D.
M

Answer: Option C

Solution

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