-->
当前位置:首页 > 题库

单选题:下列代码中,能实现绘制实心红色圆的代码是( )。

Luz3年前 (2022-12-04)题库595
下列代码中,能实现绘制实心红色圆的代码是( )。
@[D](2)

A. from turtle import *

color("red")

circle(100)

B. from turtle import *

color("red")

begin_fill()

circle(100)

C. from turtle import *

color("red")

begin_fill

circle(100)

end_fill

D. from turtle import *

color("red")


begin_fill()

circle(100)

end_fill()





A.from turtle import *

color("red")

circle(100)

B.from turtle import *

color("red")

begin_fill()

circle(100)

C.from turtle import *

color("red")

begin_fill

circle(100)

end_fill

D.from turtle import *

color("red")


begin_fill()

circle(100)

end_fill()




答案:D