python 利用turtle库绘制笑脸和哭脸的例子


Posted in Python onNovember 23, 2019

我就废话不多说了,直接上代码吧!

import turtle
turtle.pensize(5)
turtle.pencolor("yellow")
turtle.fillcolor("red")
turtle.penup()
turtle.goto(0,-200)
turtle.pendown()
turtle.circle(200)
 
turtle.penup()
turtle.goto(-100,50)
turtle.pendown()
turtle.begin_fill()
turtle.circle(17.5)
turtle.end_fill()
 
turtle.penup()
turtle.goto(100,50)
turtle.pendown()
turtle.begin_fill()
turtle.circle(17.5)
turtle.end_fill()
 
turtle.penup()
turtle.goto(0,50)
turtle.pendown()
turtle.circle(-70,steps=3)
 
turtle.penup()
turtle.goto(-100,-70)
turtle.pendown()
turtle.right(90)
turtle.circle(100,180)
turtle.mainloop()#结果如下

python 利用turtle库绘制笑脸和哭脸的例子

import turtle
turtle.pensize(5)
turtle.pencolor("green")
turtle.fillcolor("red")
turtle.penup()
turtle.goto(0,-200)
turtle.pendown()
turtle.circle(200)
 
turtle.penup()
turtle.goto(-100,50)
turtle.pendown()
turtle.begin_fill()
turtle.circle(17.5)
turtle.end_fill()
 
turtle.penup()
turtle.goto(100,50)
turtle.pendown()
turtle.begin_fill()
turtle.circle(17.5)
turtle.end_fill()
 
turtle.penup()
turtle.goto(0,50)
turtle.pendown()
turtle.circle(-70,steps=3)
 
turtle.penup()
turtle.goto(-50,-120)
turtle.pendown()
turtle.left(90)
turtle.circle(-50,180)
 
turtle.mainloop()#结果如下

python 利用turtle库绘制笑脸和哭脸的例子

import turtle
turtle.pensize(5)
turtle.pencolor("green")
turtle.fillcolor("red")
turtle.penup()
turtle.goto(0,-200)
turtle.pendown()
turtle.circle(200)
 
turtle.penup()
turtle.goto(-100,50)
turtle.pendown()
turtle.begin_fill()
turtle.circle(17.5)
turtle.end_fill()
 
turtle.penup()
turtle.goto(100,50)
turtle.pendown()
turtle.begin_fill()
turtle.circle(17.5)
turtle.end_fill()
 
turtle.penup()
turtle.goto(0,50)
turtle.pendown()
turtle.circle(-70,steps=3)
 
turtle.penup()
 
turtle.goto(-100,-120)
turtle.pendown()
 
turtle.left(90)
turtle.circle(-25,180)
 
turtle.left(180)
turtle.circle(-25,180)
 
turtle.left(180)
turtle.circle(-25,180)
 
turtle.left(180)
turtle.circle(-25,180)
 
turtle.mainloop()#结果如下

python 利用turtle库绘制笑脸和哭脸的例子

以上这篇python 利用turtle库绘制笑脸和哭脸的例子就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python中numpy.zeros(np.zeros)的使用方法
Nov 07 Python
Python+matplotlib绘制不同大小和颜色散点图实例
Jan 19 Python
python远程连接服务器MySQL数据库
Jul 02 Python
Django添加sitemap的方法示例
Aug 06 Python
tensorflow ckpt模型和pb模型获取节点名称,及ckpt转pb模型实例
Jan 21 Python
深入浅析python变量加逗号,的含义
Feb 22 Python
简单了解Python write writelines区别
Feb 27 Python
jupyter 实现notebook中显示完整的行和列
Apr 09 Python
使用Python实现批量ping操作方法
May 06 Python
全面介绍python中很常用的单元测试框架unitest
Dec 14 Python
Python如何实现感知器的逻辑电路
Dec 25 Python
python实现剪贴板的操作
Jul 01 Python
Python使用Turtle库绘制一棵西兰花
Nov 23 #Python
用Python实现校园通知更新提醒功能
Nov 23 #Python
利用Python的turtle库绘制玫瑰教程
Nov 23 #Python
Python input函数使用实例解析
Nov 22 #Python
python循环输出三角形图案的例子
Nov 22 #Python
Python-Flask:动态创建表的示例详解
Nov 22 #Python
python flask中动态URL规则详解
Nov 22 #Python
You might like
ThinkPHP中ajax使用实例教程
2014/08/22 PHP
php中字符集转换iconv函数使用总结
2014/10/11 PHP
php基于双向循环队列实现历史记录的前进后退等功能
2015/08/08 PHP
初识PHP中的Swoole
2016/04/05 PHP
mac系统下为 php 添加 pcntl 扩展
2016/08/28 PHP
php源码的安装方法和实例
2019/09/26 PHP
javascript,jquery闭包概念分析
2010/06/19 Javascript
JS字符串累加Array不一定比字符串累加快(根据电脑配置)
2012/05/14 Javascript
js实现遮罩层划出效果是生成div而不是显示
2014/07/29 Javascript
js兼容火狐显示上传图片预览效果的方法
2015/05/21 Javascript
jQuery实现点击按钮弹出可关闭层的浮动层插件
2015/09/19 Javascript
JS正则RegExp.test()使用注意事项(不具有重复性)
2016/12/28 Javascript
JS失效 提示HTML1114: (UNICODE 字节顺序标记)的代码页 utf-8 覆盖(META 标记)的冲突的代码页 utf-8
2017/06/23 Javascript
基于Vue实例生命周期(全面解析)
2017/08/16 Javascript
解决linux下node.js全局模块找不到的问题
2018/05/15 Javascript
Vue循环组件加validate多表单验证的实例
2018/09/18 Javascript
Intellij IDEA搭建vue-cli项目的方法步骤
2018/10/20 Javascript
JS实现的类似微信聊天效果示例
2019/01/29 Javascript
jquery ajax 请求小技巧实例分析
2019/11/11 jQuery
Node.js创建一个Express服务的方法详解
2020/01/06 Javascript
vue实现数字滚动效果
2020/06/29 Javascript
python函数缺省值与引用学习笔记分享
2013/02/10 Python
浅谈django中的认证与登录
2016/10/31 Python
python下解压缩zip文件并删除文件的实例
2018/04/24 Python
PyQt5+requests实现车票查询工具
2019/01/21 Python
python获取地震信息 微信实时推送
2019/06/18 Python
详解pandas映射与数据转换
2021/01/22 Python
瑞士灯具购物网站:Lampenwelt.ch
2018/07/08 全球购物
TheFork葡萄牙:欧洲领先的在线餐厅预订平台
2019/05/27 全球购物
The Athlete’s Foot新西兰:新西兰最大的运动鞋零售商
2019/12/23 全球购物
影视艺术学院毕业生自荐信
2013/11/13 职场文书
安全生产承诺书
2014/03/26 职场文书
2014年班组工作总结
2014/11/20 职场文书
2014业务员年终工作总结
2014/12/09 职场文书
2016年“我们的节日·重阳节”主题活动总结
2016/04/01 职场文书
vue使用refs获取嵌套组件中的值过程
2022/03/31 Vue.js