题库 python等级考试 题目列表 运行下面代码,可以在海龟画图窗口上画一个黑色边框,...
判断题

运行下面代码,可以在海龟画图窗口上画一个黑色边框,红色填充的圆。( )

import turtle
turtle.penup()
turtle.begin_fill()
turtle.color('black', 'red')
turtle.circle(100)
turtle.end_fill()
turtle.pendown()
turtle.forward(100)



A.
正确
B.
错误
题目信息
常用标准库的操作 一级知识块 2022年9月 一般
-
正确率
0
评论
124
点击