题库 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月 选择题
100%
正确率
0
评论
75
点击