Python 海龟绘图 100 题——第 35 题
使用二重循环绘制四个方块。
import turtle as t for i in range(0,4): for j in range(0,3): t.fd(50) t.rt(90) t.lt(180)