题库 python等级考试 题目列表 下面哪个代码可以绘制一个直径为200的填充为红色,轮...
单选题

下面哪个代码可以绘制一个直径为200的填充为红色,轮廓为蓝边的圆形?( )

A.
import turtle
turtle.pencolor('blue')
turtle.fillcolor('red')
turtle.begin_fill()
turtle.circle(200)
turtle.end_fill()
B.
import turtle
turtle.pencolor('blue')
turtle.fillcolor('red')
turtle.begin_fill()
turtle.circle(100, 360)
turtle.end_fill()
C.
import turtle
turtle.color('blue')
turtle.dot(200)
D.
import turtle
turtle.pencolor('blue')
turtle.fillcolor('red')
turtle.dot(100)
题目信息
常用标准库的操作 一级知识块 2021年6月 一般
-
正确率
0
评论
29
点击