时间:2021-05-22
这是借鉴了一位兄弟的代码,然后进行修改的,原来代码存在问题,用了2小时,自己修改,终于画出了滑稽脸,也算是对于今天学的turtle绘画库的一个小小的记录吧!(有错误希望各位看官指正啊)
编译器是:Atom
python 是3.7版本
运行位 Windows power shell
import turtleturtle.setup(600,600,200,200)#fcaeturtle.penup()turtle.goto(-210,0)turtle.seth(-90)turtle.pendown()turtle.pencolor(‘orange')turtle.pensize(4)turtle.begin_fill()turtle.circle(210,360)turtle.fillcolor(‘yellow')turtle.end_fill()turtle.pencolor(‘black')#mouthturtle.pensize(5)turtle.penup()turtle.goto(-150,30)turtle.pendown()turtle.seth(-90)turtle.circle(150,180)#left eyeturtle.penup()turtle.pensize(4)turtle.goto(-180,90)turtle.pendown()turtle.seth(40)turtle.begin_fill()turtle.circle(-120,80)turtle.penup()turtle.goto(-180,90)turtle.pendown()turtle.seth(-130)turtle.circle(15,110)turtle.seth(40)turtle.circle(-106,83)turtle.seth(30)turtle.circle(18,105)turtle.fillcolor(‘white')turtle.end_fill()#right eyeturtle.penup()turtle.goto(20,90)turtle.pendown()turtle.seth(40)turtle.begin_fill()turtle.circle(-120,80)turtle.penup()turtle.goto(20,90)turtle.pendown()turtle.seth(-130)turtle.circle(15,110)turtle.seth(40)turtle.circle(-106,83)turtle.seth(30)turtle.circle(18,105)turtle.fillcolor(‘white')turtle.end_fill()#Eyeballturtle.pensize(2)turtle.penup()turtle.goto(50,95)turtle.pendown()turtle.begin_fill()turtle.circle(8,360)turtle.fillcolor(‘black')turtle.end_fill()turtle.penup()turtle.goto(-150,95)turtle.pendown()turtle.begin_fill()turtle.circle(8,360)turtle.fillcolor(‘black')turtle.end_fill()#Blushturtle.pensize(1)turtle.pencolor(‘pink')turtle.begin_fill()turtle.penup()turtle.goto(-160,50)turtle.pendown()turtle.seth(-90)for i in range(2):for j in range(10):turtle.forward(j)turtle.left(9)for j in range(10,0,-1):turtle.forward(j)turtle.left(9)turtle.fillcolor(‘pink')turtle.end_fill()turtle.pensize(1)turtle.pencolor(‘pink')turtle.begin_fill()turtle.penup()turtle.goto(40,50)turtle.pendown()turtle.seth(-90)for i in range(2):for j in range(10):turtle.forward(j)turtle.left(9)for j in range(10,0,-1):turtle.forward(j)turtle.left(9)turtle.fillcolor(‘pink')turtle.end_fill()turtle.hideturtle()turtle.done()以上这篇使用python的turtle绘画滑稽脸实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
本文实例主要是对turtle的使用,实现Python+turtle动态绘制一棵树的实例,具体代码:#drawtree.pyfromturtleimportTur
通过使用turtle绘画象棋棋盘,供大家参考,具体内容如下#绘制象棋棋盘importturtlet=turtle.Pen()t.width(2)#设置画笔粗细t
今天为大家介绍几个Python“装逼”实例代码,python绘制樱花、玫瑰、圣诞树代码实例,主要使用了turtle库Python绘制樱花代码实例动态生成樱花效果
python的turtle库的简单使用Python的turtle库是一个直观有趣的图形绘制函数库,是python的标准库之一。一、绘图坐标体系turtle库绘制
turtle的文档:https://docs.python.org/3/library/turtle.html用Python的turtle库绘图是很简单的,闲来