Vidyalelo
Python · Q120

Module in Python

Programming · Python · question 120

Q120

What will be the output of the following Python code? import turtle t=turtle.Pen() t.forward(100) t.left(90) t.clear() t.position()

A.
0.00, 90.00
B.
0.00, 0.00
C.
100.00, 90.00
D.
100.00, 100.00
Answer

Answer: Option D

Solution

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