以下是标题和代码,从左到右,从上到下分别是:
创新互联专注为客户提供全方位的互联网综合服务,包含不限于网站建设、网站设计、牟平网络推广、小程序制作、牟平网络营销、牟平企业策划、牟平品牌公关、搜索引擎seo、人物专访、企业宣传片、企业代运营等,从售前售中售后,我们都将竭诚为您服务,您的肯定,是我们最大的嘉奖;创新互联为所有大学生创业者提供牟平建站搭建服务,24小时服务热线:18980820575,官方网址:www.cdcxhl.com
repeat 4[fd 50 rt 90 fd 50 rt 90 fd 50 lt 90]
repeat 5[fd 100 rt 144]
repeat 8[fd 50 lt 90 fd 10 bk 10 rt 90 bk 50 rt 45]
repeat 4[fd 100 bk 50 rt 90]
repeat 2[fd 50 rt 120 fd 50 rt 120 fd 50 rt 300]
repeat 2[repeat 3[fd 50 rt 90 fd 50 lt 90]rt 90]
第二张:
1.3:
repeat 6[fd 50 rt 120 fd 50 rt 120 fd 50 rt 120 rt 60]
2.3:
repeat 8[repeat 4[fd 50 rt 90]rt 45]
3.1:
repeat 3[repeat 6[fd 50 rt 60]rt 120]
最后一行:
4.1:
repeat 4[fd 100 rt 90 stampoval 50 50]
4.2:
repeat 5[repeat 36[fd 5 rt 10]rt 72]
4.3:
repeat 6[repeat 36[fd 5 rt 10](stampoval 50 50"true)rt 60]
以上所有命令均未经测试,请自行测试
希望能得到你的祝福
来自:离高考还有9天的高三狗
turtle.fd()是向前,只不过turtle默认的初始方向是向正东。比如画一个正六边形的代码如下
一只小海龟(tutle库的使用)
课程内容如下:
1.召唤小海龟,导入turtle及设置海龟图形
import turtle
turtle.shape("turtle")
2.设置背景颜色为蓝色
turtle.bgcolor("blue")
3.让小海龟向前出发,移动距离为150px
turtle.forward(150)
4.让小海龟右转,右转角度为90°
turtle.right(90)
5.经过几轮直行与右转的组合,最终形成正方形,最后再将正方形上色
turtle.fillcolor("yellow")
turtle.begin_fill()
结束
turtle.end_fill()
6.完整代码如下:
import turtle
turtle.shape("turtle")
turtle.bgcolor("blue")
turtle.fillcolor("yellow")
turtle.begin_fill()
#移动距离为150px
turtle.forward(150)
#右转角度为90°
turtle.right(90)
#移动距离为150px
turtle.forward(150)
#右转角度为90°
turtle.right(90)
#移动距离为150px
turtle.forward(150)
#右转角度为90°
turtle.right(90)
#移动距离为150px!
turtle.forward(150)
turtle.end_fill()