第15444题 单选题
绘制指定横向排列菱形图案的Python turtle代码横线处应填入什么参数?

目标图形:横向排列5个菱形的图案 横向排列5个菱形的图案

待补全Python代码如下:

import turtle

for i in range(5):
    turtle.penup()
    turtle.goto(________________)
    turtle.pendown()
    turtle.circle(40, steps = 4)
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析