🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
:-: **绘制如下图形** ![](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() ```