Python中如何用turtle库画出小猪佩奇社会人

首先送上传送门:

https://www.zhihu.com/question/275611095/answer/382959285

接下来贴代码

  1 from turtle import *
  2
  3 def nose(x,y):#鼻子
  4     penup()#提起笔
  5     goto(x,y)#定位
  6     pendown()#落笔,开始画
  7     setheading(-30)#将乌龟的方向设置为to_angle/为数字(0-东、90-北、180-西、270-南)
  8     begin_fill()#准备开始填充图形
  9     a=0.4
 10     for i in range(120):
 11         if 0<=i<30 or 60<=i<90:
 12             a=a+0.08
 13             left(3) #向左转3度
 14             forward(a) #向前走a的步长
 15         else:
 16             a=a-0.08
 17             left(3)
 18             forward(a)
 19     end_fill()#填充完成
 20
 21     penup()
 22     setheading(90)
 23     forward(25)
 24     setheading(0)
 25     forward(10)
 26     pendown()
 27     pencolor(255,155,192)#画笔颜色
 28     setheading(10)
 29     begin_fill()
 30     circle(5)
 31     color(160,82,45)#返回或设置pencolor和fillcolor
 32     end_fill()
 33
 34     penup()
 35     setheading(0)
 36     forward(20)
 37     pendown()
 38     pencolor(255,155,192)
 39     setheading(10)
 40     begin_fill()
 41     circle(5)
 42     color(160,82,45)
 43     end_fill()
 44
 45
 46 def head(x,y):#头
 47     color((255,155,192),"pink")
 48     penup()
 49     goto(x,y)
 50     setheading(0)
 51     pendown()
 52     begin_fill()
 53     setheading(180)
 54     circle(300,-30)
 55     circle(100,-60)
 56     circle(80,-100)
 57     circle(150,-20)
 58     circle(60,-95)
 59     setheading(161)
 60     circle(-300,15)
 61     penup()
 62     goto(-100,100)
 63     pendown()
 64     setheading(-30)
 65     a=0.4
 66     for i in range(60):
 67         if 0<=i<30 or 60<=i<90:
 68             a=a+0.08
 69             lt(3) #向左转3度
 70             fd(a) #向前走a的步长
 71         else:
 72             a=a-0.08
 73             lt(3)
 74             fd(a)
 75     end_fill()
 76
 77
 78 def ears(x,y): #耳朵
 79     color((255,155,192),"pink")
 80     penup()
 81     goto(x,y)
 82     pendown()
 83     begin_fill()
 84     setheading(100)
 85     circle(-50,50)
 86     circle(-10,120)
 87     circle(-50,54)
 88     end_fill()
 89
 90     penup()
 91     setheading(90)
 92     forward(-12)
 93     setheading(0)
 94     forward(30)
 95     pendown()
 96     begin_fill()
 97     setheading(100)
 98     circle(-50,50)
 99     circle(-10,120)
100     circle(-50,56)
101     end_fill()
102
103
104 def eyes(x,y):#眼睛
105     color((255,155,192),"white")
106     penup()
107     setheading(90)
108     forward(-20)
109     setheading(0)
110     forward(-95)
111     pendown()
112     begin_fill()
113     circle(15)
114     end_fill()
115
116     color("black")
117     penup()
118     setheading(90)
119     forward(12)
120     setheading(0)
121     forward(-3)
122     pendown()
123     begin_fill()
124     circle(3)
125     end_fill()
126
127     color((255,155,192),"white")
128     penup()
129     seth(90)
130     forward(-25)
131     seth(0)
132     forward(40)
133     pendown()
134     begin_fill()
135     circle(15)
136     end_fill()
137
138     color("black")
139     penup()
140     setheading(90)
141     forward(12)
142     setheading(0)
143     forward(-3)
144     pendown()
145     begin_fill()
146     circle(3)
147     end_fill()
148
149
150 def cheek(x,y):#腮
151     color((255,155,192))
152     penup()
153     goto(x,y)
154     pendown()
155     setheading(0)
156     begin_fill()
157     circle(30)
158     end_fill()
159
160
161 def mouth(x,y): #嘴
162     color(239,69,19)
163     penup()
164     goto(x,y)
165     pendown()
166     setheading(-80)
167     circle(30,40)
168     circle(40,80)
169
170 def body(x,y):#身体
171     color("red",(255,99,71))
172     penup()
173     goto(x,y)
174     pendown()
175     begin_fill()
176     setheading(-130)
177     circle(100,10)
178     circle(300,30)
179     setheading(0)
180     forward(230)
181     setheading(90)
182     circle(300,30)
183     circle(100,3)
184     color((255,155,192),(255,100,100))
185     setheading(-135)
186     circle(-80,63)
187     circle(-150,24)
188     end_fill()
189
190
191 def hands(x,y):#手
192     color((255,155,192))
193     penup()
194     goto(x,y)
195     pendown()
196     setheading(-160)
197     circle(300,15)
198     penup()
199     setheading(90)
200     forward(15)
201     setheading(0)
202     forward(0)
203     pendown()
204     setheading(-10)
205     circle(-20,90)
206
207     penup()
208     setheading(90)
209     forward(30)
210     setheading(0)
211     forward(237)
212     pendown()
213     setheading(-20)
214     circle(-300,15)
215     penup()
216     setheading(90)
217     forward(20)
218     setheading(0)
219     forward(0)
220     pendown()
221     setheading(-170)
222     circle(20,90)
223
224 def foot(x,y):#脚
225     pensize(10)
226     color((240,128,128))
227     penup()
228     goto(x,y)
229     pendown()
230     setheading(-90)
231     forward(40)
232     setheading(-180)
233     color("black")
234     pensize(15)
235     fd(20)
236
237     pensize(10)
238     color((240,128,128))
239     penup()
240     setheading(90)
241     forward(40)
242     setheading(0)
243     forward(90)
244     pendown()
245     setheading(-90)
246     forward(40)
247     setheading(-180)
248     color("black")
249     pensize(15)
250     fd(20)
251
252 def tail(x,y):#尾巴
253     pensize(4)
254     color((255,155,192))
255     penup()
256     goto(x,y)
257     pendown()
258     seth(0)
259     circle(70,20)
260     circle(10,330)
261     circle(70,30)
262
263 def setting():          #参数设置
264     pensize(4)
265     hideturtle()        #使乌龟无形(隐藏)
266     colormode(255)      #将其设置为1.0或255.随后 颜色三元组的r,g,b值必须在0 .. cmode范围内
267     color((255,155,192),"pink")
268     setup(840,500)
269     speed(10)
270
271 def main():
272     setting()           #画布、画笔设置
273     nose(-100,100)      #鼻子
274     head(-69,167)       #头
275     ears(0,160)         #耳朵
276     eyes(0,140)         #眼睛
277     cheek(80,10)        #腮
278     mouth(-20,30)       #嘴
279     body(-32,-8)        #身体
280     hands(-56,-45)      #手
281     foot(2,-177)        #脚
282     tail(148,-155)      #尾巴
283     done()
284
285 if __name__ == ‘__main__‘:
286     main()

接下来是实验结果

这个程序主要就是用到了turtle这个可以画画的库,画了一个社会人,还是挺好玩的哈哈哈哈哈

原文地址:https://www.cnblogs.com/yuzy/p/10643401.html

时间: 2024-08-29 19:29:23

Python中如何用turtle库画出小猪佩奇社会人的相关文章

小猪佩奇社会人专用服务器,有意思的python小程序,附python代码

最近社会人小猪佩奇挺热门的,大家都在说社会人,那么我们作为IT人,怎么让我们的服务器也蹭一下社会人的热点的?下面来给大家说说. 先来个效果图: 小猪佩奇社会人专用服务器 哈哈,这样是不是挺有意思的?工作已经很无聊了,如果再不找点乐趣,那还怎么干活? 说说怎么实现的吧,其实这个是通过python代码实现的,而且代码仅仅只有30行. 需要说明的是,这个python代码不仅仅能转换小猪佩奇社会人,而且还能转换各种图片,比如佛祖啊什么的,只要你有色彩对比度差不多的图片,都可以进行转换. 如下图,我换了个

原来python还能这么用,使用turtle库画出漂亮的画!

Tuttle库是python内置库,今天就利用它画出各种漂亮的图! 如何画出多重五角星? 效果展示如下:是不是很酷呢,下面还有更酷的玩法.多重五角星的代码比较简单,用到了循环跟turtle库一些简单的方法就实现了. 如何画出一颗漂亮的树呢? 效果展示如下:是不是可以用beatiful来形容,自己一个个敲出来更有成就感,赶紧动手试一下吧!!! 还有更高阶的玩法:加入一些花瓣是不是感觉像自己完成的一幅佳作,以前要用笔画几个小时,现在你只需要几行代码就可以完成一幅漂亮的画: 欢迎点击右上角关注?转发,

使用ctypes在Python中调用C++动态库

使用ctypes在Python中调用C++动态库 入门操作 使用ctypes库可以直接调用C语言编写的动态库,而如果是调用C++编写的动态库,需要使用extern关键字对动态库的函数进行声明: #include <iostream> using namespace std; extern "C" { void greet() { cout << "hello python" << endl; } } 将上述的C++程序编译成动态链

div+css画一个小猪佩奇

用DIV+CSS画一个小猪佩奇,挺可爱的,嘻嘻. HTML部分(全是DIV) <!-- 小猪佩奇整体容器 --> <div class="pig_container"> <!-- 尾巴 --> <div class="tail_left"></div> <div class="tail_right"></div> <div class="tail_

3. python中的包和库

3.1模块和包的概念 当代码越来越多时,当把所有的代码都集中于一个文件中时,难以维护 将代码分开放在不同的py文件中,易于维护,同一名字的变量和函数互不影响 如 #a.py x=5 def f1(): pass #b.py x='str' def f1(iterable): pass a.py和b.py中变量和函数互不影响 将a.py称为模块a,将b.py称为模块b,可见,模块的名字就是.py文件的名字 引入第三方的模块 #test.py import math print math.pow(2

Turtle库画小猫咪

视频请点击这里哟 这个是用python库画的小猫咪,前面一步步的画整个猫的整个身体,具体步骤都写在了注释之中.身体部分画的比较快,后面画了5个心,由于画心的时候要改变好多度数,而且每次只前进一点点,所以画心的时候会比较慢,大家在看视频的时候会发现这一点.这个东西花了好个小时画出来,好多地方都是几像素几像素的试出来的.不过,我画画能力一般,加上时间有限,并不能完善所有细节.但是我尽可能多的完善了一些线条和布局,弧度之类的的细节,希望大家喜欢我们的作品. 希望大家多多支持我们的作品哟! #!/usr

使用pangolin库画出轨迹

https://github.com/stevenlovegrove/Pangolin cmake_minimum_required(VERSION 2.8) project(chapter3) set(CMAKE_CXX_STANDARD 11) include_directories("/usr/include/eigen3") find_package(Pangolin REQUIRED) include_directories(${Pangolin_INCLUDE_DIRS})

Python中如何用pip安装外部主机文件

在python中安装非自带python模块,有三种方式: easy_install pip 下载压缩包(.zip, .tar, .tar.gz)后解压, 进入解压缩的目录后执行python setup.py install命令 本文主要针对pip安装时可能会碰到的一种情况,及解决办法: 假如我要安装pylint模块,该模块非python自带模块,用import肯定不能导入,需要额外安装 >>> import pylint Traceback (most recent call last)

【python】用turtle库画一棵树

# drawtree.py from turtle import Turtle, mainloop def tree(plist, l, a, f): """ plist is list of pens l is length of branch a is half of the angle between 2 branches f is factor by which branch is shortened from level to level.""&