1、绘制台阶图
通过 python 的turtle 库绘制一个台阶图的图案,如下图:
2、实现代码
引入新的命令:turtle.ycor(),获取当前海龟的y 坐标值,turtle.xcor()是获取海龟的 x 坐标值; turtle.setx(x) , turtle.sety(y)分别是设置 x 坐标为 x 值,设置 y 坐标为 y 值,实现 代码如下:
"""
台阶图.py
"""
import turtle # 导入海龟模块
turtle.width(2) # 设定画笔宽度为2
for _ in range(5): # 重复5次
turtle.fd(50)
turtle.rt(90)
turtle.fd(50)
turtle.lt(90)
turtle.bk(250) # 倒退250
y = turtle.ycor()+250 # 海龟y坐标的值加250
turtle.sety(y) # 把y值设为海龟的y坐标
turtle.done() # 海龟完事了