当前位置:   article > 正文

小海龟编程python_Python少儿编程全集(一):一只小海龟(turtle库的使用)

跟小海龟学python

这是Python少儿编程全集系列课程第一课,一只小海龟(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()

留个作业(完成的回帖哦0.0):

![]()

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/空白诗007/article/detail/788600
推荐阅读
相关标签
  

闽ICP备14008679号