Python 海龟绘图 100 题——第 48 题
使用二重循环绘制六叶长方形风车。
import turtle as t for i in range(0,6): for j in range(0,2): t.fd(100) t.rt(90) t.fd(30) t.rt(90) t.rt(60)