给你一面国旗 教你用python画中国国旗


Posted in Python onSeptember 24, 2019

本文实例为大家分享了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 相关文章推荐
学习python (2)
Oct 31 Python
浅谈python抛出异常、自定义异常, 传递异常
Jun 20 Python
python 3利用BeautifulSoup抓取div标签的方法示例
May 28 Python
python中set()函数简介及实例解析
Jan 09 Python
Python网络爬虫中的同步与异步示例详解
Feb 03 Python
解决python大批量读写.doc文件的问题
May 08 Python
python执行系统命令后获取返回值的几种方式集合
May 12 Python
tensorflow: variable的值与variable.read_value()的值区别详解
Jul 30 Python
Django分页查询并返回jsons数据(中文乱码解决方法)
Aug 02 Python
python实现维吉尼亚算法
Mar 20 Python
Window10下python3.7 安装与卸载教程图解
Sep 30 Python
Python爬虫制作翻译程序的示例代码
Feb 22 Python
Python MongoDB 插入数据时已存在则不执行,不存在则插入的解决方法
Sep 24 #Python
Python获取时间戳代码实例
Sep 24 #Python
Python django框架输入汉字,数字,字符生成二维码实现详解
Sep 24 #Python
分享一个pycharm专业版安装的永久使用方法
Sep 24 #Python
python实现的config文件读写功能示例
Sep 24 #Python
python使用socket实现的传输demo示例【基于TCP协议】
Sep 24 #Python
pymysql 开启调试模式的实现
Sep 24 #Python
You might like
php中将网址转换为超链接的函数
2011/09/02 PHP
基于PHP读取csv文件内容的详解
2013/06/18 PHP
浅谈web上存漏洞及原理分析、防范方法(安全文件上存方法)
2013/06/29 PHP
php获取操作系统语言代码
2013/11/04 PHP
分享一个Laravel好用的Cache宏
2015/03/02 PHP
PHP开发api接口安全验证操作实例详解
2020/03/26 PHP
JavaScript Timer实现代码
2010/02/17 Javascript
JavaScript之IE的fireEvent方法详细解析
2013/11/20 Javascript
无刷新预览所选择的图片示例代码
2014/04/02 Javascript
JavaScript中的Function函数
2015/08/27 Javascript
简单实现兼容各大浏览器的js复制内容到剪切板
2015/09/09 Javascript
js解决movebox移动问题
2016/03/29 Javascript
归纳下js面向对象的几种常见写法总结
2016/08/24 Javascript
Angular2 环境配置详细介绍
2016/09/21 Javascript
jQuery中DOM节点删除之empty与remove
2017/01/20 Javascript
express+mockjs实现模拟后台数据发送功能
2018/01/07 Javascript
Vue 项目中遇到的跨域问题及解决方法(后台php)
2018/03/28 Javascript
JS实现的合并多个数组去重算法示例
2018/04/11 Javascript
node.js到底要不要加分号浅析
2018/07/11 Javascript
微信小程序使用wxParse解析html的实现示例
2018/08/30 Javascript
在vue中实现给每个页面顶部设置title
2020/07/29 Javascript
微信小程序实现可拖动悬浮图标(包括按钮角标的实现)
2020/12/29 Javascript
用Python编写web API的教程
2015/04/30 Python
详解使用pymysql在python中对mysql的增删改查操作(综合)
2017/01/18 Python
使用python绘制温度变化雷达图
2019/10/18 Python
基于Tensorflow一维卷积用法详解
2020/05/22 Python
DataFrame 数据合并实现(merge,join,concat)
2020/06/14 Python
python实现启动一个外部程序,并且不阻塞当前进程
2020/12/05 Python
探讨HTML5移动开发的几大特性(必看)
2015/12/30 HTML / CSS
医学专业大学生求职的自我评价
2013/11/27 职场文书
团代会主持词
2014/04/02 职场文书
副董事长岗位职责
2014/04/02 职场文书
我的小天地教学反思
2014/04/30 职场文书
奶茶店创业计划书
2014/08/14 职场文书
论文评审意见
2015/06/05 职场文书
vue中 this.$set的使用详解
2021/11/17 Vue.js