五角星怎么画(详解如何用turtle画出太阳花和五角星)
作者:麦兜 更新时间:2024-11-27 18:51:47 阅读 874
概述
今天主要分享两个有趣的python脚本,主要是看下turtle的一些用法,下面一起来看看吧~
海龟实例--太阳花脚本
#!/usr/bin/python
# coding=utf-8
import turtle as t
import time
t.color("red", "yellow")
t.speed(10)
t.begin_fill()
for _ in range(50):
t.forward(200)
t.left(170)
t.end_fill()
time.sleep(1)
实现如下:
海龟实例--绘制五角星
#!/usr/bin/python
import turtle
import time
turtle.pensize(5)
turtle.pencolor("yellow")
turtle.fillcolor("red")
turtle.begin_fill()
for _ in range(5):
turtle.forward(200)
turtle.right(144)
turtle.end_fill()
time.sleep(2)
turtle.penup()
turtle.goto(-150,-120)
turtle.color("violet")
turtle.write("五角星", font=('Arial', 40, 'normal'))
time.sleep(3)
执行如下:
觉得有用的朋友多帮忙转发哦!后面会分享更多devops和DBA方面的内容,感兴趣的朋友可以关注下~
声明:本文由"麦兜"发布,不代表"知识分享"立场,转载联系作者并注明出处:https://www.029ipr.com/life/16604.html