Python 海龟绘图 100 题——第 47 题
使用二重循环绘制四个长方形。
import turtle as t for i in range(0,4): for j in range(0,2): t.fd(100) t.rt(90) t.fd(30) t.rt(90) t.rt(90)