Python 海龟绘图 100 题——第 44 题
使用二重循环绘制五个角度一样的正方形。
import turtle as t for i in range(0,5): for j in range(0,4): t.fd(80) t.lt(90) t.rt(72)