第12173题 单选题
以下哪个操作可以让给定的Python turtle程序不报错,且仅中间红色虚线框中的代码不运行?

Python turtle程序代码截图,红色虚线框标注第6、7行代码 原始待修改程序如下,第6、7行为红色虚线框标注的需跳过运行的代码:

import turtle
turtle.pendown()
turtle.forward(150)
turtle.left(120)

# 以下为红色虚线框标注代码
turtle.forward(150)
turtle.left(120)
# 以上为红色虚线框标注代码

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