Examveda

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: Option D


This Question Belongs to Python Program >> Module In Python

Join The Discussion

Related Questions on Module in Python