用python画中国国旗的方法

发布时间:2020-07-06 15:08:27 作者:清晨
来源:亿速云 阅读:1503

这篇文章将为大家详细讲解有关用python画中国国旗的方法,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。

在python中,绘制中国国旗可以用turtle海龟库实现。方法是:1、利用turtle.goto绘制轮廓;2、利用turtle.fillcolor函数填充绘制颜色;3、绘制完成后利用turtle.hideturtle隐藏海龟图标。

用python画中国国旗的方法

朋友圈许多小伙伴都在发:请给我一面五星红旗的动态,这篇文章就主要教大家如何使用python画中国国旗,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了python画中国国旗的具体代码,供大家参考,具体内容如下

# author : momo
import turtle
#中国国旗
turtle.up()
turtle.goto(-200,200)
turtle.down()
turtle.begin_fill()
turtle.fillcolor("red")
turtle.pencolor("red")
for i in range(2):
   turtle.forward(280)
   turtle.right(90)
   turtle.forward(200)
   turtle.right(90)
turtle.end_fill()
  
turtle.up()
turtle.goto(-170,145)
turtle.down()
turtle.begin_fill()
turtle.fillcolor("yellow")
turtle.pencolor("yellow")
for x in range(5):
   turtle.forward(50)
   turtle.right(144)
turtle.end_fill()
  
turtle.up()
turtle.goto(-100,180)
turtle.down()
turtle.begin_fill()
turtle.fillcolor("yellow")
turtle.pencolor("yellow")
for x in range(5):
   turtle.forward(20)
   turtle.right(144)
turtle.end_fill()
  
turtle.up()
turtle.goto(-70,160)
turtle.down()
turtle.begin_fill()
turtle.fillcolor("yellow")
turtle.pencolor("yellow")
for x in range(5):
   turtle.forward(20)
   turtle.right(144)
turtle.end_fill()
  
turtle.up()
turtle.goto(-70,120)
turtle.down()
turtle.begin_fill()
turtle.fillcolor("yellow")
turtle.pencolor("yellow")
for x in range(5):
   turtle.forward(20)
   turtle.right(144)
turtle.end_fill()
  
turtle.up()
turtle.goto(-100,100)
turtle.down()
turtle.begin_fill()
turtle.fillcolor("yellow")
turtle.pencolor("yellow")
for x in range(5):
   turtle.forward(20)
   turtle.right(144)
turtle.end_fill()
  
  
turtle.hideturtle()#隐藏小海龟
#维持面板
turtle.done()

用python画中国国旗的方法

关于用python画中国国旗的方法就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

推荐阅读:
  1. 使用Python的turtle模块画国旗
  2. 如何使用python画中国国旗

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

python

上一篇:Windows平台使用Navicat for MySQL通过SSH密钥认证连接远程MySQL数据库

下一篇:python统计词频的方法

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》