What will be the output of the following Python code?
import turtle()
t=turtle.Pen()
t.goto(50,60)
t1=t.clone()
t1.ycor()
import turtle()
t=turtle.Pen()
t.goto(50,60)
t1=t.clone()
t1.ycor()A. 0.0
B. 50.0
C. 60.0
D. Error
Answer: Option C

Join The Discussion