Python 海龟绘图 100 题——第 69 题
每个正方形的长度依次增加 10。
import turtle as t s = 40 for i in range(0,7): for j in range(0,4): t.fd(s) t.lt(90) s=s+10