Q169
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()
A.
Error
B.
A circle filled in with the colour red
C.
A circle filled in with the colour blue
AnswerD.
A circle filled in with the colour green
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board