Vidyalelo
Python · Q113

Module in Python

Programming · Python · question 113

Q113

The output of the following Python code will result in a shape similar to the alphabet . . . . . . . . import turtle t=turtle.Turtle() t1=turtle.Turtle() t.left(45) t1.left(135) t.forward(100) t1.forward(100)

A.
V
Answer
B.
Inverted V
C.
X
D.
T

Answer: Option A

Solution

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