python画图猪_用Python的turtle画一只小猪乔治【刚学python两天,记念一下】

import turtle as t

'''

t.pu() 提起画笔

t.pd() 移动时绘制图形,缺省时也为绘制

t.seth 设置当前朝向为angle角度

t.begin_fill() 准备开始填充图形

t.color 同时设置pencolor=color1, fillcolor=color2

t.goto 设置笔的坐标

t.circle(70,20) 半径 度数

15,124,215 乔治裤子颜色外面

66,163,242 乔治裤子颜色里面

134 196 247 天空的颜色

123,245,95 草地的颜色

253,6,6 鞋子外面

253,70,70 鞋子里面

130,119,100 泥坑

'''

r_a=0.8

wight = 1100

height = 700

#t.pensize(4)

t.hideturtle()

t.colormode(255)

t.color((255,155,192),"pink")

t.setup(wight,height)

t.speed(10)

def move_pen(x,y):

t.pu()

t.goto(x-wight/2+50,y-height/2+50)

t.pd()

def pen_set(size,r1,g1,b1,r2=0,g2=0,b2=0):

t.pensize(size)

t.color((r1,g1,b1),(r2,g2,b2))

def draw_grid():

pen_set(1,0,0,0,0,0,0)

for i in range(20):

move_pen(0+i*50,0)

t.seth(90)

t.fd(600)

for i in range(12):

move_pen(0,0+i*50)

t.seth(0)

t.fd(1000)

def draw_bg():

#画草地

move_pen(0,350)

pen_set(4,123,245,95, 123,245,95)

t.begin_fill()

t.seth(-90)

t.fd(350)

t.seth(0)

t.fd(1000)

t.seth(90)

t.fd(350)

t.end_fill()

#画天空

move_pen(0,350)

pen_set(4,134,196,247, 134,196,247)

t.begin_fill()

t.seth(90)

t.fd(250)

t.seth(0)

t.fd(1000)

t.seth(-90)

t.fd(250)

a=-180 + r_a

for i in range(50):

a = a - r_a/50

t.seth(a)

t.fd(500/50)

a =180

for i in range(50):

a = a - r_a/50

t.seth(a)

t.fd(500/50)

t.end_fill()

def draw_mud_pit():

#画泥坑

pen_set(5,130,119,100, 130,119,100)

move_pen(350,150)

t.begin_fill()

t.seth(-180)

t.circle(50,125)

t.seth(-20)

t.circle(350,60)

t.seth(20)

t.circle(50,30)

t.seth(10)

t.circle(50,30)

t.seth(0)

t.circle(50,30)

t.seth(40)

t.circle(50,90)

t.seth(170)

t.circle(500,45)

t.end_fill()

def draw_shoes():

pen_set(3,253,6,6, 253,70,70)

move_pen(400,100)

t.begin_fill()

t.seth(0)

t.fd(50)

t.seth(87)

t.fd(50)

t.seth(180)

t.fd(25)

t.seth(-93)

t.fd(20)

t.seth(-180)

t.fd(25)

t.seth(-120)

t.circle(45,38)

t.end_fill()

move_pen(470,100)

t.begin_fill()

t.seth(0)

t.fd(50)

t.seth(87)

t.fd(50)

t.seth(180)

t.fd(25)

t.seth(-93)

t.fd(20)

t.seth(-180)

t.fd(25)

t.seth(-120)

t.circle(45,38)

t.end_fill()

def draw_leg():

pen_set(6,255,155,192, 255,155,192)

move_pen(440,140)

t.seth(90)

t.fd(20)

move_pen(510,140)

t.seth(90)

t.fd(20)

def draw_trousers():

move_pen(400,300)

pen_set(6,15,124,215, 66,163,242)

t.begin_fill()

d_a = 100

a=-130

for i in range(60):

a = a + 2

t.seth(a)

t.fd(3)

for i in range(14):

a = a + 0.02

t.seth(a)

t.fd(2)

a = 0-a

for i in range(14):

a = a + 0.02

t.seth(a)

t.fd(2)

for i in range(60):

a = a + 2.2

t.seth(a)

t.fd(3)

t.end_fill()

def draw_tile():

move_pen(550,177)

pen_set(6,255,155,192, 255,155,192)

a=-60

for i in range(25):

a = a + 4

t.seth(a)

t.fd(1)

t.circle(5)

a = -a

for i in range(30):

a = a + 4

t.seth(a)

t.fd(1)

def draw_hands():

move_pen(550,250)

pen_set(6,255,155,192, 255,155,192)

t.seth(20)

t.fd(70)

move_pen(600,270)

t.seth(60)

t.fd(20)

move_pen(600,270)

t.seth(-20)

t.fd(20)

move_pen(380,250)

t.seth(160)

t.fd(50)

move_pen(350,260)

t.seth(100)

t.fd(20)

move_pen(350,260)

t.seth(-140)

t.fd(20)

def draw_face():

move_pen(400,360)

pen_set(4,255,155,192, 255,196,218)

t.begin_fill()

a=-120

for i in range(20):

a = a + 2.5

t.seth(a)

t.fd(2.2)

for i in range(130):

a = a + 1.3

t.seth(a)

t.fd(1.8)

for i in range(35):

a = a + 1.4

t.seth(a)

t.fd(2)

for i in range(50):

a = a + 0.35

t.seth(a)

t.fd(2)

for i in range(50):

a = a + 0.2

t.seth(a)

t.fd(2)

n=0.4

for i in range(180):

if 0<=i<30 or 60<=i<90 or 120<=i<150 :

n=n+0.08

t.lt(3) #向左转3度

t.fd(n) #向前走a的步长

else:

n=n-0.08

t.lt(3)

t.fd(n)

a=-50

for i in range(20):

a = a + 2.8

t.seth(a)

t.fd(5)

t.end_fill()

def draw_other():

move_pen(310,440)

pen_set(6,255,145,192, 255,145,192)

t.begin_fill()

t.circle(3)

t.end_fill()

move_pen(330,430)

t.begin_fill()

t.circle(3)

t.end_fill()

pen_set(6,255,145,192, 255,255,255)

move_pen(410,425)

t.begin_fill()

t.circle(10)

t.end_fill()

move_pen(460,395)

t.begin_fill()

t.circle(10)

t.end_fill()

pen_set(6,0,0,0,0,0,0)

move_pen(405,429)

t.begin_fill()

t.circle(3)

t.end_fill()

move_pen(455,399)

t.begin_fill()

t.circle(3)

t.end_fill()

move_pen(510,310)

pen_set(6,255,155,192, 255,155,192)

t.begin_fill()

t.circle(25)

t.end_fill()

move_pen(410,340)

pen_set(6,255,145,192, 255,145,192)

a=-80

for i in range(20):

a = a + 6

t.seth(a)

t.fd(3)

move_pen(430,445)

pen_set(4,255,155,192, 255,196,218)

t.begin_fill()

a=120

for i in range(40):

a = a - 2

t.seth(a)

t.fd(1.2)

a=-a

for i in range(45):

a = a - 2

t.seth(a)

t.fd(1.2)

t.end_fill()

move_pen(480,430)

t.begin_fill()

a=70

for i in range(40):

a = a -1.5

t.seth(a)

t.fd(1.5)

a=-80

for i in range(45):

a = a -1.5

t.seth(a)

t.fd(1.5)

t.end_fill()

draw_bg()

draw_mud_pit()

#draw_grid()

draw_leg()

draw_shoes()

draw_trousers()

draw_tile()

draw_hands()

draw_face()

draw_other()

t.mainloop()

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/308645.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

人工智能正在如何改变传统行业

做了这么多年的技术工作&#xff0c;也正好赶上了这一波的人工智能浪潮&#xff0c;有时候我总是不免在想&#xff0c;人工智能如何真正地融入到我们的日常工作和生活中&#xff0c;实现它应有的价值。大家可能不知道&#xff0c;人工智能其实最早在上个世纪五十年代就提出来了…

[Redis6]key键操作

我们先连接redis cd /usr/local/bin/ redis-cliRedis键(key) keys *查看当前库所有key (匹配&#xff1a;keys *1) exists key判断某个key是否存在 type key 查看你的key是什么类型 del key 删除指定的key数据 unlink key 根据value选择非阻塞删除 仅将keys从keyspace元数据…

继续分享 5 个实用的 vs 调试技巧

前言我在上一篇文章????《5 个非常实用的 vs 调试技巧》 中分享了 5 个我认为非常值得了解的 vs 调试技巧&#xff0c;本周继续分享 5 个很基础但同样实用的调试技巧。1. 条件断点作用简介&#xff1a;顾名思义&#xff0c;带条件的断点。满足条件才中断。条件断点非常非常…

[Redis6]常用数据类型_String字符串

Redis字符串(String) 简介 String是Redis最基本的类型&#xff0c;你可以理解成与Memcached一模一样的类型&#xff0c;一个key对应一个value。String类型是二进制安全的。意味着Redis的string可以包含任何数据。比如jpg图片或者序列化的对象。String类型是Redis最基本的数据…

pytorch tensor 初始化_PyTorch简明笔记[1]-Tensor的初始化和基本操作

听麻麻说&#xff0c;偷偷收藏而不感谢是不礼貌的&#xff0c;至少应该点个赞~我觉得麻麻说的对&#xff01;不断地被人安利PyTorch&#xff0c;终于忍不住诱惑决定入坑了。当初学习TensorFlow的时候&#xff0c;没有系统性地学习。之前TF的英文官网一直看不了&#xff0c;而中…

在ASP.NET Core中创建自定义端点可视化图

在上篇文章中&#xff0c;我为构建自定义端点可视化图奠定了基础&#xff0c;正如我在第一篇文章中展示的那样。该图显示了端点路由的不同部分&#xff1a;文字值&#xff0c;参数&#xff0c;动词约束和产生结果的端点&#xff1a;在本文中&#xff0c;我将展示如何通过创建一…

[Redis6]常用数据类型_List列表

List列表 简介 单键多值 Redis 列表是简单的字符串列表&#xff0c;按照插入顺序排序。你可以添加一个元素到列表的头部&#xff08;左边&#xff09;或者尾部&#xff08;右边&#xff09;。 它的底层实际是个双向链表&#xff0c;对两端的操作性能很高&#xff0c;通过索…

linux正向连接shell_[经验] Linux 怎么连接 Xshell?

(1) 首先, 你要先有一个可以正常运行的 Linux 系统, 当然一般情况下我们是把这个系统放在虚拟机里的, 我所使用的是 ubuntu-18.04.2-live-server-amd64.iso(2) 在安装好并登陆上 Linux系统后, 就可以开始表演了1. 在命令行上输入  sudo apt-get install openssh-server  安…

[Redis6]常用数据类型_Set集合

Set集合 简介 Redis set对外提供的功能与list类似是一个列表的功能&#xff0c;特殊之处在于set是可以自动排重的&#xff0c;当你需要存储一个列表数据&#xff0c;又不希望出现重复数据时&#xff0c;set是一个很好的选择&#xff0c;并且set提供了判断某个成员是否在一个s…

来领.NET Core学习资料,7天整理了30多个G(适合各阶段.Net开发者)

干货分享2020/07/27大家好&#xff0c;我是CSDN的小黑&#xff0c;2020年的唯一跳槽季&#xff0c;金九银十马上到来&#xff0c;今天这波干货必须学习起来&#xff01;前后整理了半个月&#xff0c;从零基础到就业&#xff0c;进阶高级开发&#xff0c;走向架构&#xff0c;三…

nc 监听数据_nc命令使用解析大全

名称nc - 任意的TCP和UDp连接与监听工具概要nc [-46DdhklnrStUuvzC] [-i interval] [-p source_port][-s source_ip_address] [-T ToS] [-w timeout] [-X proxy_protocol] [-xproxy_address[:port]] [hostname] [port[s]]描述nc(或者netcat)的用途是被用来做关于TCP或者UDP协议…

[Redis6]常用数据结构_Hash哈希

Hash哈希 简介 Redis hash 是一个键值对集合。 Redis hash是一个string类型的field和value的映射表&#xff0c;hash特别适合用于存储对象。 类似Java里面的Map<String,Object> 用户ID为查找的key&#xff0c;存储的value用户对象包含姓名&#xff0c;年龄&#xff…

ASP.NET Core中的分布式缓存

ASP.NET Core中的分布式缓存在上一篇文章中[1]&#xff0c;我解释了如何使用内存缓存在ASP.NET Core应用程序中管理缓存。如果您的应用程序托管在单个服务器上&#xff0c;则可以使用这种类型的缓存。那.NET Core框架可以使用哪些工具在云中的分布式方案中进行缓存呢IDistribut…

marquee滚动起始位置_巧用喵影关键帧制作滚动水印,让视频小偷无可盗

视频创作者最奔溃瞬间&#xff0c;不是翻遍了所有网站还找不到合适的素材&#xff0c;也不是作品快完成了却发现电脑死机&#xff0c;而是自己呕心沥血做出来的视频被盗了&#xff0c;结果盗版视频的播放量还更高&#xff01;&#xff01;​理想的解决方法就是给视频打上水印。…

.NET Core + K8S + Loki 玩转日志聚合

Grafana loki1. Intro最近在了解日志聚合系统&#xff0c;正好前几天看到一篇文章《用了日志系统新贵Loki&#xff0c;ELK突然不香了&#xff01;》&#xff0c;所以就决定动手体验一下。本文就带大家快速了解下Loki&#xff0c;并简单介绍.NET Core如何集成Loki。2. Whats Lok…

[Redis6]常用数据类型_Zset有序集合

Zset有序集合 简介 Redis有序集合zset与普通集合set非常相似&#xff0c;是一个没有重复元素的字符串集合。 不同之处是有序集合的每个成员都关联了一个评分&#xff08;score&#xff09;,这个评分&#xff08;score&#xff09;被用来按照从最低分到最高分的方式排序集合中…

css 旋转45_CSS教程——第14期

警告&#xff01;本期内容建议CSS基础良好的人看&#xff0c;本期为实战篇&#xff0c;难度有点大哈喽大家好我是wawjf灰常抱歉我们咕咕了快两周&#xff0c;主要原因是我们的几位作者(加上我其实就两个)去夏令营学习了某重要东西&#xff0c;所以没时间更新&#xff0c;在这里…

使用Azure Blob Storage实现一个静态文件服务器

什么是Azure Blob StorageAzure Blob Storage是微软Azure的对象存储服务。国内的云一般叫OSS&#xff0c;是一种用来存储非结构化数据的服务&#xff0c;比如音频&#xff0c;视频&#xff0c;图片&#xff0c;文本等等。用户可以通过http在全球任意地方访问这些资源。这些资源…

[Nginx]简介

Nginx 简介 Nginx 概述 Nginx (“engine x”) 是一个高性能的 HTTP 和反向代理服务器,特点是占有内存少&#xff0c;并发能力强&#xff0c;事实上 nginx 的并发能力确实在同类型的网页服务器中表现较好&#xff0c;中国大陆使用 nginx网站用户有&#xff1a;百度、京东、新浪…

简述tcp协议三报文握手过程_TCP协议中的三次握手和四次挥手(图解)

建立TCP需要三次握手才能建立&#xff0c;而断开连接则需要四次握手。整个过程如下图所示&#xff1a;先来看看如何建立连接的。首先Client端发送连接请求报文&#xff0c;Server段接受连接后回复ACK报文&#xff0c;并为这次连接分配资源。Client端接收到ACK报文后也向Server段…