ThinkChat🤖让你学习和工作更高效,注册即送10W Token,即刻开启你的AI之旅 广告
:-: **绘制如下图形** ![](http://h.yiniuedu.com/c9289ccfea7586873c94b4c11290fb12) ``` from turtle import * for i in range(10): penup() length = 10 * (i + 1) pendown() left(90) fd(length) left(90) fd(length) left(90) fd(length * 2) left(90) fd(length * 2) left(90) fd(length * 3) left(90) fd(length * 3) done() ```