题库 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月 判断题
100%
正确率
0
评论
43
点击