本文主要是介绍Python·turtle库编程之:怎么画一个五角星?,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
文章目录
- 前言
- 源码
- 附:
前言
大家好,我是BoBo仔,这节课我要带来一期turtle库的使用教程——画五角星。话不多说,我们直接上代码。
源码
import turtle as t
t.pencolor('yellow')
t.fillcolor("yellow")
t.penup()
t.goto(0, 0)
t.pendown()
t.begin_fill()for i in range(1,6):t.forward(100) # 向前100t.right(144) # 顺时针旋转144°t.end_fill()
t.hideturtle()
t.done()
这就是全过程了,效果如下:
【讲解内容请看以下链接:】
https://editor.csdn.net/md/?articleId=136100116
更多turtle库内容,欢迎关注我哟,进入我的主页,即可享受turtle库讲解!
附:
上2节turtle讲解链接
第一讲:
https://editor.csdn.net/md/?articleId=136085783
第二讲:
https://editor.csdn.net/md/?articleId=136089890
这篇关于Python·turtle库编程之:怎么画一个五角星?的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!