给你一面国旗 教你用python画中国国旗
作者:默默hong 时间:2023-06-25 15:10:36
本文实例为大家分享了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()
来源:https://blog.csdn.net/yuehongqqqq/article/details/81198290
标签:python,中国国旗,国旗
0
投稿
猜你喜欢
pytest多重断言的实现
2021-10-12 03:30:25
python求解三角形第三边长实例
2021-08-24 06:16:28
web.py在SAE中的Session问题解决方法(使用mysql存储)
2024-01-28 02:17:15
Python实现备份MySQL数据库的方法示例
2024-01-27 18:20:04
python指定路径斜杠与反斜杠遇到的问题
2023-03-18 20:47:27
python同时替换多个字符串方法示例
2021-11-25 00:37:54
微信小程序导入Vant报错VM292:1 thirdScriptError的解决方法
2024-04-19 09:47:25
vue2.0.js的多级联动选择器实现方法
2024-04-28 09:23:37
基于Python+Pygame实现变异狗大战游戏
2021-04-19 09:46:45
Pycharm最常用的快捷键及使用技巧
2022-12-13 11:33:25
亲手教你怎样创建一个简单的mysql数据库
2024-01-18 21:59:04
CSS中背景background的一些语法
2009-03-24 21:02:00
python迭代器自定义类的具体方法
2023-07-08 06:17:30
Linux下为不同版本python安装第三方库
2023-11-12 05:04:35
详解OpenCV图像的概念和基本操作
2021-07-22 02:05:30
对python读取zip压缩文件里面的csv数据实例详解
2022-04-14 10:48:57
Python3 读、写Excel文件的操作方法
2023-05-21 15:14:32
Python 爬虫学习笔记之正则表达式
2021-07-02 01:50:55
go redis之redigo的使用
2024-05-22 17:46:37
Python 函数基础知识汇总
2021-12-22 15:47:09