Python 海龟绘图 100 题——第 30 题
循环绘制多条斜线。
import turtle as t for i in range(0,10): t.lt(60) t.fd(100) t.bk(100) t.rt(60) t.pu() t.fd(10) t.pd()