1. 首页
  2. 数据库
  3. 其它
  4. python turtle 海龟绘图小恐龙(《小猪佩奇》里的)

python turtle 海龟绘图小恐龙(《小猪佩奇》里的)

上传者: 2020-12-22 20:52:45上传 PDF文件 385.48KB 热度 32次
python零基础 turtle库绘制《小猪佩奇》里的小恐龙 python代码 #dinosaur.py import turtle as t #龙身 t.setup(1000,600) # 设置画布的大小 t.speed(10) # 设置画笔速度为10 t.pensize(5) # 设置画笔大小 t.pencolor("SpringGreen4") # 设置画笔颜色 t.penup() # 提笔 t.goto(250,180) # 画笔前往坐标(250,18
用户评论