#@project = facepalm

#@file = main

#@author = Maoliang Ran

#@create_time = 2018/8/28 22:57

import turtle

# 画指定的任意圆弧

def arc(sa,ea,x,y,r):#start angle,end angle,circle center,radius

turtle.penup()

turtle.goto(x,y)

turtle.setheading(0)

turtle.left(sa)

turtle.fd(r)

turtle.pendown()

turtle.left(90)

turtle.circle(r,(ea-sa))

return turtle.position()

turtle.hideturtle()

#画脸

turtle.speed(5)

turtle.setup(900,600,200,200)

turtle.pensize(5)

turtle.right(90)

turtle.penup()

turtle.fd(100)

turtle.left(90)

turtle.pendown()

turtle.begin_fill()

turtle.pencolor("#B26A0F")#head side color

turtle.circle(150)

turtle.fillcolor("#F9E549")#face color

turtle.end_fill()

#画嘴

turtle.penup()

turtle.goto(77,20)

turtle.pencolor("#744702")

turtle.goto(0,50)

turtle.right(30)

turtle.fd(110)

turtle.right(90)

turtle.pendown()

turtle.begin_fill()

turtle.fillcolor("#925902")#mouth color

turtle.circle(-97,160)

turtle.goto(92,-3)

turtle.end_fill()

turtle.penup()

turtle.goto(77,-25)

#画牙齿

turtle.pencolor("white")

turtle.begin_fill()

turtle.fillcolor("white")

turtle.goto(77,-24)

turtle.goto(-81,29)

turtle.goto(-70,43)

turtle.goto(77,-8)

turtle.end_fill()

turtle.penup()

turtle.goto(0,-100)

turtle.setheading(0)

turtle.pendown()

#画左边眼泪

turtle.left(90)

turtle.penup()

turtle.fd(150)

turtle.right(60)

turtle.fd(-150)

turtle.pendown()

turtle.left(20)

turtle.pencolor("#155F84")#tear side color

turtle.fd(150)

turtle.right(180)

position1=turtle.position()

turtle.begin_fill()

turtle.fillcolor("#7EB0C8")#tear color

turtle.fd(150)

turtle.right(20)

turtle.left(270)

turtle.circle(-150,18)

turtle.right(52)

turtle.fd(110)

position2=turtle.position()

turtle.goto(-33,90)

turtle.end_fill()

#画右边眼泪

turtle.penup()

turtle.goto(0,0)

turtle.setheading(0)

turtle.left(90)

turtle.fd(50)

turtle.right(150)

turtle.fd(150)

turtle.left(150)

turtle.fd(100)

turtle.pendown()

turtle.begin_fill()

turtle.fd(-100)

turtle.fillcolor("#7EB0C8")#tear color

turtle.right(60)

turtle.circle(150,15)

turtle.left(45)

turtle.fd(66)

turtle.goto(77,20)

turtle.end_fill()

#画眼睛

turtle.penup()

turtle.pencolor("#6C4E00")#eye color

turtle.goto(-65,75)

turtle.setheading(0)

turtle.left(27)

turtle.fd(38)

turtle.pendown()

turtle.begin_fill()

turtle.fillcolor("#6C4E00")#eye color

turtle.left(90)

turtle.circle(38,86)

turtle.goto(position2[0],position2[1])

turtle.goto(position1[0],position1[1])

turtle.end_fill()

#画手

turtle.pencolor("#D57E18")#hand side color

turtle.begin_fill()

turtle.fillcolor("#EFBD3D")#hand color

#第一个手指

arc(-110,10,110,-40,30)

turtle.circle(300,35)

turtle.circle(13,120)

turtle.setheading(-50)

turtle.fd(20)

turtle.setheading(130)

#第二个手指

turtle.circle(200,15)

turtle.circle(12,180)

turtle.fd(40)

turtle.setheading(137)

#第三个手指

turtle.circle(200,16)

turtle.circle(12,160)

turtle.setheading(-35)

turtle.fd(45)

turtle.setheading(140)

#第四个手指

turtle.circle(200,13)

turtle.circle(11,160)

turtle.setheading(-35)

turtle.fd(40)

turtle.setheading(145)

#第五个手指

turtle.circle(200,9)

turtle.circle(10,180)

turtle.setheading(-31)

turtle.fd(50)

#画最后手腕的部分

turtle.setheading(-45)

turtle.pensize(7)

turtle.right(5)

turtle.circle(180,35)

turtle.end_fill()

turtle.begin_fill()

turtle.setheading(-77)

turtle.pensize(5)

turtle.fd(50)

turtle.left(-270)

turtle.fd(7)

turtle.pencolor("#EFBD3D")

turtle.circle(30,180)

turtle.end_fill()

#测试

# res=arc(70,220,90,50,300)

# print(res[0],res[1])

turtle.done()

总结

以上所述是小编给大家介绍的python画微信表情符的实例代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!

python画微信表情_python画微信表情符的实例代码相关推荐

  1. python水仙花数总结_python打印n位数“水仙花数”(实例代码)

    注:所谓n位数"水仙花数"是指一个n数,其各位数字n次方和等于该数本身.如三位数"水仙花数"是指一个三位数,其各位数3次方和等于该数本身. 一.3位数" ...

  2. 怎样用python把数据分开_python使用pandas实现数据分割实例代码

    本文研究的主要是Python编程通过pandas将数据分割成时间跨度相等的数据块的相关内容,具体如下. 先上数据,有如下dataframe格式的数据,列名分别为date.ip,我需要统计每5s内出现的 ...

  3. python制作会动的表情包_python画微信表情符的实例代码

    #@project = facepalm #@file = main #@author = Maoliang Ran #@create_time = 2018/8/28 22:57 import tu ...

  4. php创建菜单_php实现微信公众号创建自定义菜单功能的实例代码

    目的 创建自定义菜单,实现菜单事件. 首先获取Access_Token 接口: 我用的是测试号,修改APPID和APPSECRET,然后浏览器访问上面这个Url即可生成Access_Token 然后配 ...

  5. java 微信自定义菜单开发_微信公众号开发之设置自定义菜单实例代码【java版】...

    本实例是为了实现在管理后台实现微信菜单的添加删除管理. 1.首先我们需要新建一个数据库表用于存放menu菜单项 可包含的字段有id.父类id.name.排序.是否显示.类型(view.click).链 ...

  6. 微信小程序 scroll-view组件实现列表页实例代码

    这篇文章主要介绍了微信小程序 scroll-view组件实现列表页实例代码的相关资料,scroll-view组件介绍scroll-view是微信小程序提供的可滚动视图组件,其主要作用是可以用来做手机端 ...

  7. 下拉多选框 微信小程序_微信小程序下拉框功能的实例代码

    微信小程序组件里没有下拉框,正好要用到,记下来以后参考 wxml代码 选择接收班级 {{grade_name}} {{item}} wxss代码 /* 顶部 */ .top{ width: 100vw ...

  8. python资料百度网盘-python自动保存百度盘资源到百度盘中的实例代码

    本实例的实现逻辑是,应用selenium UI自动化登录百度盘,读取存储百度分享地址和提取码的txt文档,打开百度盘分享地址,填入提取码,然后保存到指定的目录中 全部代码如下: # -*-coding ...

  9. python分配红包程序_Python版微信红包分配算法

    Python版微信红包分配算法 发布于 2015-05-08 10:54:23 | 151 次阅读 | 评论: 0 | 来源: 网友投递 Python编程语言Python 是一种面向对象.解释型计算机 ...

最新文章

  1. python with上下文管理
  2. C++线性序列容器vector简单总结
  3. spring知识概要
  4. OpenCASCADE:MFC示例
  5. 年轻人不讲武德,居然在简历中藏木马!
  6. 操作系统实验报告3:Linux 下 x86 汇编语言2
  7. Java笔记——Java代码块的执行顺序
  8. UNIX网络编程——sockatmark函数
  9. 微型计算机kong控制技术,AT89C2051单片机在步进电机控制中的应用
  10. hadoop SecondNamenode
  11. 《Adobe Illustrator CC 2014中文版经典教程(彩色版)》—第1课0.8节编辑描边
  12. 《BI那点儿事》数据流转换——派生列
  13. leetcode刷题:2.两数之和
  14. dll 文件创建与使用
  15. Star Schema完全参考手册读书笔记二
  16. 冈萨雷斯图像处理Matlab函数汇总
  17. IT小天博客APP版本
  18. ubuntu java 中文_java部署ubuntu后中文显示问号问题
  19. 如何快速下载百度网盘大文件
  20. 51单片机—红外遥控

热门文章

  1. 泰德激光打标软件 包含 #include Main.h 时 原本正确的单元却报错
  2. 淘宝自然搜索机制排名原理介绍,如何做好店铺商品自然搜索排名?
  3. CentOS7vim修改文件/bin/bash: wq command not found问题解决
  4. 枕头的高度影响颈椎健康
  5. [数值微分]数值微分的误差分析
  6. 旅游景区怎么在抖音上卖门票?
  7. 易中天品汉代风云人物09:刘邦崛起之谜
  8. 如何提高iPhone和iPad上语音备忘录的音质
  9. android studio报错Error:Project with path 'XXXX' could not be found解决办法
  10. uniapp GPS定位功能的实现