题目:绘制下面的图形 解析: 考察 turtle 基本命令,前进,后退,转角度。 答案: import turtle as t t.fd(100) t.bk(100) t.rt(30) t.fd(100) 来源:玩转Python海龟绘图