Python 海龟绘图 100 题——第10题
综合应用,带有初始角度的长方形。
使用循环。
import turtle as t t.lt(45) for i in range(0,2): t.fd(100) t.lt(90) t.fd(60) t.lt(90)