第19058题 判断题
判断给定Python代码能否绘制出题目所示半径为50的圆形

运行下列Python代码后,可绘制出下方半径为50的圆形:

import turtle
turtle.color('red')
turtle.penup()
turtle.circle(50)
turtle.pendown()

半径为50的圆形

{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析