Python 海龟绘图 100 题——第19题
综合应用,绘制直角梯形。
import turtle as t t.fd(120) t.lt(90) t.fd(50) t.lt(90) t.fd(50) t.home()