What will be the output of the following Python code?
import turtle
t=turtle.Pen()
t.color(0,0,1)
t.begin_fill()
t.circle(15)
t.end_fill()
import turtle
t=turtle.Pen()
t.color(0,0,1)
t.begin_fill()
t.circle(15)
t.end_fill()A. Error
B. A circle filled in with the colour red
C. A circle filled in with the colour blue
D. A circle filled in with the colour green
Answer: Option C

Join The Discussion