What will be the output of the following Python code if the system date is 18th June, 2017 (Sunday)?
import turtle
t=turtle.Pen()
t.goto(100,0)
t.towards(0,0)
import turtle
t=turtle.Pen()
t.goto(100,0)
t.towards(0,0)A. 0.0
B. 180.0
C. 270.0
D. 360.0
Answer: Option B

Join The Discussion