What will be the output of the following Python code?
import turtle
t=turtle.Pen()
t.right(90)
t.forward(100)
t.heading()
import turtle
t=turtle.Pen()
t.right(90)
t.forward(100)
t.heading()A. 0.0
B. 90.0
C. 270.0
D. 360.0
Answer: Option C

Join The Discussion