题库 python等级考试 题目列表 分析下列程序,说法错误的是?( )import turtl...
单选题

分析下列程序,说法错误的是?(

import turtle
turtle.color('blue')
turtle.fillcolor('yellow')
turtle.begin_fill()
turtle.circle(50)
turtle.end_fill()
turtle.forward(100)
turtle.color('red', 'aqua')
turtle.begin_fill()
turtle.circle(50)
turtle.end_fill()
A.

turtle.color('blue')表示的含义为:设置轮廓和填充颜色均为"blue"


B.

turtle.fllcolor('yellow')表示的含义为:设置填充颜色为"yellow"

C.

程序运行结果为:绘制两个圆,左边圆填充颜色为"yellow",右边圆的颜色为"aqua"

D.

最终绘制两个圆的轮廓颜色均为"blue"

题目信息
常用标准库的操作 一级知识块 2021年6月 较难
-
正确率
0
评论
33
点击