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