Examveda

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

D. A circle filled in with the colour green

Answer: Option C


This Question Belongs to Python Program >> Module In Python

Join The Discussion

Related Questions on Module in Python