python turtle画大白 python turtle如何画弧线_python

1.说点什么

今天是情人节,转眼间我已经单身6743天了。在五道口技校有npy的人是幸福的,因为对方可以帮忙换屏幕、拆电脑、修电视、换灯泡……五道口技校的单身狗也是幸福的,因为不用帮一个npy调板子、写数学、debug、搬东西……无论如何,Feb.14快乐!

没有折玫瑰的彩纸,没有编星星的亮条,没有蘸颜料的画笔,甚至进不去面包味的机械加工室。人生苦短,我用python。让计算机帮我们吧!表面上这个代码献给单身狗,实际上改一改就可以用来表白或者秀恩爱了。运行的时候,看着箭头或是海龟在画布上爬行,真是美妙极了。

2.快速入门python turtle

python turtle可以画图,搞出许多有趣的可视化东西。它也是最适合培养编程兴趣的工具之一。

2.1 setup

默认原点(0,0)在正中间,画笔向东(0°方向)移动。clear():清空turtle窗口,不改变画笔位置reset():清空窗口,回复画笔起始位置screensize(canvwidth,canvheight):设置画布大小

  • screensize(canvwidth,canvheight,bg),参数分别为画布的宽,高,背景颜色。
  • setup(width,height,startx,starty),参数宽和高为整数时表示像素;为小数时,表示占据电脑屏幕的比例,startx和starty表示矩形窗口左上角顶点的位置,如果为空则窗口位于屏幕中心

pensize(size):设置画笔粗细seth(degree):设置画笔方向

  • 参数取值0~360

speed(speed):设置画笔移动速度

  • 参数取值1~10整数

color('black'):设置画笔颜色fillcolor('black):设置填充颜色

  • 参数可以是RGB三元组或字符串 字符串对应色卡

2.2 运动命令

fd(d) :向前移动距离dbd(d):向后移动距离dright(degree):向右转动多少度left(degree):向左转动多少度goto(x,y):将画笔移动到(x,y)位置stamp():绘制当前图形undo():撤销上一动作

2.3 画笔控制

pd():画笔落下,移动时绘制图形pu():画笔抬起,移动时不绘制图形circle(radius,degree):绘制度数为degree的圆弧,规律如下图:



python turtle画大白 python turtle如何画弧线_字符串_02

半径和度数均可取正负值

2.4 插入文本

见代码末尾write函数。

3.Codes

因为没有npy帮忙debug,就懒得面向对象设计程序了。表白的时候最好还是封装几个函数,好调参一些,比如想发射一堆小心心什么的。用点循环啊,再整点变量名字,会显得不那么low。

from turtle import *

#setup
screensize(500,500)
pensize(5)
seth(0)
speed(10)
color('black')
fillcolor('black')

#face
pd()
fd(25)
circle(100,90)#0
circle(120,90)
fd(10)
circle(120,90)
circle(100,90)
fd(25)
pu()

#eyes
goto(10,100)
pd()
fd(50)
circle(15,180)
fd(50)
circle(15,180)
pu()

goto(60,100)
begin_fill()
circle(17)
end_fill()

goto(-100,100)
pd()
fd(50)
circle(15,180)
fd(50)
circle(15,180)
pu()

goto(-50,100)
begin_fill()
circle(17)
end_fill()

#mouth
goto(-60,50)
pd()
seth(340)
circle(30,100)
seth(180)
fd(20)
seth(280)
circle(30,120)
pu()

#ears
goto(60,212)
pd()
seth(60)
circle(-80,50)
circle(-5,90)
circle(-150,35)
pu()

goto(-60,212)
pd()
seth(110)
circle(80,40)
seth(270)
fd(69)
pu()

#heart
goto(0,-100)
size=90
pd()
seth(150)
fd(size)
circle(-337, 45)
circle(-129, 165)
left(120)
circle(-129, 165)
circle(-337, 45)
fd(size)
pu()

#Words
goto(-220,-100)
write("I Love THU!\n\n", align="right", font=("MS UI Gothic",20,"bold"))
goto(-260,80)
write("Happy Feb.14!\n\n", align="right", font=("华文隶书",20,"bold"))
goto(420,-110)
write("THU makes me happy!\n\n", align="right", font=("楷体", 16, "bold"))
goto(440,110)
write("Give me a npy!\n\n", align="right", font=("Tempus Sans ITC", 16, "bold"))

#goodbye
hideturtle()
done()

当然可以画更好看的东西!比如Peppa Pig:

python turtle画大白 python turtle如何画弧线_字符串_03

代码有点长就不放了。

最后,

python turtle画大白 python turtle如何画弧线_python_04