当前位置:   article > 正文

巧妙运用python画五星红旗

巧妙运用python画五星红旗
import turtle as t#代入turle把它转换为t更加方便使用
t.speed(0)
t.fillcolor('yellow')#fillcolor使用颜色 
t.penup()
t.goto(-300,200)
t.pendown()
t.begin_fill()#开始填充

for a in range(5):
    t.forward(80)#直线
    t.left(72)#左转
    t.forward(80)
    t.right(144)#右转
t.end_fill()#结束填充
t.fillcolor('yellow')
t.penup()
t.goto(-50, 260)
t.pendown()
t.begin_fill()
t.right(30)


for a in range(5):#利用for循环使图像画五笔,可以方便并简介代码
        t.forward(20)
        t.left(72)
        t.forward(20)
        t.right(144)
t.end_fill()
t.fillcolor('yellow')
t.penup()
t.goto(0, 200)
t.pendown()
t.begin_fill()



for a in range(5):
        t.forward(20)
        t.left(72)
        t.forward(20)
        t.right(144)

t.end_fill()

t.fillcolor('yellow')
t.penup()
t.goto(0, 100)
t.pendown()
t.begin_fill()
t.left(30)


for a in range(5):
        t.forward(20)
        t.left(72)
        t.forward(20)
        t.right(144)
t.end_fill()

t.fillcolor('yellow')
t.penup()
t.goto(-55, 50)
t.pendown()
t.begin_fill()
t.right(30)


for a in range(5):
        t.forward(20)
        t.left(72)
        t.forward(20)
        t.right(144)
t.end_fill()
t.bgcolor("red")
t.exitonclick()#此代码可以使程序运行完,不会直接退出。

希望大家能巧妙的运用turtle的函数,制作出更多有趣的图像

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

闽ICP备14008679号