Python 海龟绘图 100 题——第 27 题
循环的嵌套,绘制田字。
import turtle as t for i in range(0,4): for j in range(0,4): t.fd(100) t.rt(90) t.rt(90)