Python用turtle画爱心丘比特之剑

简介: Python用turtle画爱心丘比特之剑

**程序员的爱情,在Python中运用调用turtle库来根据函数画出爱心。**

from turtle import*
setup(750,500)
penup()
pensize(25)
pencolor("pink")
fd(-230)
seth(90)
pendown()
circle(-50,180)
circle(50,-180)
circle(75,-50)
circle(-190,-45)
penup()
fd(185)
seth(180)
fd(120)
seth(90)
pendown()
circle(-75,-50)
circle(190,-45)
penup()
fd(184)
seth(0)
fd(80)
seth(90)
pendown()
circle(-50,180)
circle(50,-180)
circle(75,-50)
circle(-190,-45)
penup()
fd(185)
seth(180)
fd(120)
seth(90)
pendown()
circle(-75,-50)
circle(190,-45)
penup()
fd(150)
seth(180)
fd(300)
pencolor("red")
pensize(10)
pendown()
fd(-500)
seth(90)
fd(30)
fd(-60)
seth(30)
fd(60)
seth(150)
fd(60)
done()

image.png

目录
相关文章
|
2天前
|
Python
python turtle库
python turtle库
40 0
|
2天前
|
Python
Python漂浮爱心完整代码
Python漂浮爱心完整代码
49 0
|
2天前
|
Python
Python跳动的爱心完整代码
Python跳动的爱心完整代码
660 0
|
2天前
|
Python Perl
情人节到了,写一份爱心程序(python)
情人节到了,写一份爱心程序(python)
34 0
|
2天前
|
存储 Python
【python】——超市管理系统和用turtle动态画图(爱心和魔幻曲线)
【python】——超市管理系统和用turtle动态画图(爱心和魔幻曲线)
45 0
【python】——超市管理系统和用turtle动态画图(爱心和魔幻曲线)
|
2天前
|
小程序 Python
python画一颗爱心
python画一颗爱心
31 0
|
2天前
|
Python
Python爱心光波完整代码
Python爱心光波完整代码
46 0
|
2天前
|
弹性计算 数据安全/隐私保护 Python
快速搭建python turtle画布,画出专属你的冬日浪漫
turtle库是Python语言中自带的一个用于绘制图像的函数库。turtle库为使用者提供一个或多个小乌龟作为画笔,使用者可通过turtle库提供的各种方法去控制小乌龟在一个平面直角坐标系中移动并绘制移动轨迹以画出想要的图案。
快速搭建python turtle画布,画出专属你的冬日浪漫
|
2天前
|
Python
基于python的turtle实现圣诞树的绘制
基于python的turtle实现圣诞树的绘制
|
2天前
|
Python
【python】桌面表白代码-画爱心+桌面生成文本文件
【python】桌面表白代码-画爱心+桌面生成文本文件
37 0