本文用的turtle 是 python 内置的一个比较有趣味的模块,俗称 海龟绘图,它是基于 tkinter 模块打造,提供一些简单的绘图工具,关于他的一些详细参数我们不做介绍,有兴趣的自行查资料
效果图:
import turtle
def curvemove():#定义一个函数画笔移动方向距离
for i in range(200):
turtle.right(1)
turtle.forward(1)
turtle.speed(1)#画笔速度
turtle.color('pink')#画笔的颜色
turtle.fillcolor('pink')#填充的颜色
turtle.begin_fill()#开始填充
turtle.left(140)#向左偏140
turtle.forward(115.65)#正向运动115.75
curvemove()
turtle.left(120)
curvemove()
turtle.forward(115.65)
turtle.end_fill()#结束填充
turtle.goto(20,0)#将画笔定位(20,0)
turtle.write("Hey Cyx,情人节快乐", move='True', font=("Arial", 20, "normal"))
turtle.done()
祝各位情人节快乐!
领取专属 10元无门槛券
私享最新 技术干货