Python制作表白爱心合集


Posted in Python onJanuary 22, 2022
目录

导语

"盘子里最后一块肉给你 一 冰激凌的第一口给你 一手机最后的10%电量给你!"

哈喽大家好!我是木木子,我要开始给大家放大招啦

你来之后,苦都不太苦,甜都特别甜

如果人类有尾巴的话,说起来有点不好意思 ,只要和你在一起,一定会止不住摇起来

我害怕你找不到我,所以我要藏在你心里

I love three things in the world.The sun,the moon and you.The sun for the day,the moon for the night,and you for ever.

浮世万千,吾爱有三。日,月与卿。日为朝,月为暮,卿为朝朝暮暮。

下面这几套表白小项目送给大家 希望大家喜欢​

正文

一、爱心表白:做我女朋友吧,行就行,不行我再想想办法

1)效果展示

Python制作表白爱心合集

2)附主程序

t=turtle.pen()
t=turtle
t.up()
t.goto(0,150)
t.down()
t.color('pink')
t.begin_fill()
t.fillcolor('pink')
t.speed(1)
t.left(45)
t.forward(150)
t.right(45)
t.forward(100)
t.right(45)
t.forward(100)
t.right(45)
t.forward(100)
t.right(45)
t.forward(250+math.sqrt(2)*100)
t.right (90)
t.speed(2)
t.forward(250+100*math.sqrt(2))
t.right(45)
t.forward(100)
t.right(45)
t.forward(100)
t.right(45)
t.forward(100)
t.right(45)
t.forward(150)
t.end_fill()
t.goto(-10,0)
t.pencolor('white')
#L
t.pensize(10)
t.goto(-50,0)
t.goto(-50,80)
t.up ()
#I
t.goto(-100,0)
t.down()
t.goto(-160,0)
t.goto(-130,0)
t.goto(-130,80)
t.goto(-160,80)
t.goto(-100,80)
t.up()
#O
t.goto(10,25)
t.down()
t.right(45)
t.circle(25,extent=180)
t.goto(60,55)
t.circle(25,extent=180)
t.goto(10,25)
t.up()
t.goto(75,80)
t.down()
t.goto(100,0)
t.goto(125,80)
t.up()
t.goto(180,80)
t.down()
t.goto(140,80)
t.goto(140,0)
t.goto(180,0)
t.up()
t.goto(180,40)
t.down()
t.goto(140,40)
#U
t.up()
t.goto(-40,-30)
t.down()
t.goto(-40,-80)
t.circle(40,extent=180)
t.goto(40,-30)
t.hideturtle()
a=input()

二、爱心表白:?有两个心愿:你在身边,在你身边

1)效果展示

Python制作表白爱心合集

2)附主程序

pen = turtle.Turtle()
pen.hideturtle()

pen.fillcolor('pink')
pen.begin_fill()

# set the starting direction
pen.left(110)

# draw the left bottom part
while pen.heading() < 140:
    # rotate & forward
    pen.left(1)
    pen.forward(2)

# move up
pen.forward(90)

# draw the left upper part
while pen.xcor() < 0:
    pen.right(0.8)
    pen.forward(1)

# go back to the starting point, and do the right part as a mirror
pen.up()
pen.goto(0, 0)
pen.down()

# set the direction
pen.setheading(70)

# draw the right bottom part
while pen.heading() > 40:
    # Defining step by step curve motion
    pen.right(1)
    pen.forward(2)

# move up
pen.forward(90)

# draw the right upper part
while pen.xcor() > 0:
    print(pen.xcor())
    pen.left(0.8)
    pen.forward(1)

# Ending the filling of the color
pen.end_fill()

三、爱心表白:君初相识,犹如故人归。天涯明月新,朝暮最相思

1)效果展示​

Python制作表白爱心合集

2)附主程序

import turtle as t

def heart(x,y,z):    # 绘制爱心
    t.pensize(2)
    t.pencolor("black")
    if z == 1:
        t.fillcolor("red")
    elif z == 0:
        t.fillcolor("pink")
    t.begin_fill()     #左半边
    t.penup()
    t.goto(x,y)
    t.pendown()
    t.circle(50,180)
    t.circle(180,37)
    t.left(46)      #右半边
    t.circle(180,37)
    t.circle(50, 182)
    t.end_fill()
def arrow1(x,y):
   t.pensize(5)
    t.pencolor("black")
    t.fillcolor("brown")
    t.penup()
    t.goto(x, y)
    t.pendown()
    t.setheading(210)
    t.forward(150)
    t.begin_fill()
    t.left(30)
    t.forward(20)
    t.right(30)
    t.forward(50)
    t.right(150)
    t.forward(20)
    t.left(120)
    t.forward(20)
    t.right(150)
    t.forward(50)
    t.right(30)
    t.forward(20)
    t.end_fill()
def arrow2(x, y):
    t.pensize(5)
    t.pencolor("black")
    t.fillcolor("brown")
    t.penup()
    t.goto(x, y)
    t.pendown()
    t.begin_fill()
    t.setheading(30)
    t.forward(100)
    t.left(90)
    t.forward(8)
    t.right(120)
    t.forward(16)
    t.right(120)
    t.forward(16)
    t.right(120)
    t.forward(8)
    t.end_fill()
def main():
    t.setheading(90)
    heart(50, 130, 0)
    t.setheading(120)
    heart(0, 100, 1)
    arrow1(-20, 60)
    arrow2(100, 130)
    t.hideturtle()
    t.exitonclick()

以上就是Python制作表白爱心合集的详细内容,更多关于Python表白爱心的资料请关注三水点靠木其它相关文章!

Python 相关文章推荐
在Python程序和Flask框架中使用SQLAlchemy的教程
Jun 06 Python
Python爬虫_城市公交、地铁站点和线路数据采集实例
Jan 10 Python
python验证码识别教程之利用投影法、连通域法分割图片
Jun 04 Python
python-str,list,set间的转换实例
Jun 27 Python
pandas.DataFrame删除/选取含有特定数值的行或列实例
Nov 07 Python
Python中is和==的区别详解
Nov 15 Python
只需7行Python代码玩转微信自动聊天
Jan 27 Python
Python计算时间间隔(精确到微妙)的代码实例
Feb 26 Python
50行Python代码获取高考志愿信息的实现方法
Jul 23 Python
python将字典列表导出为Excel文件的方法
Sep 02 Python
基于Python中Remove函数的用法讨论
Dec 11 Python
python中str内置函数用法总结
Dec 27 Python
基于Python实现一个春节倒计时脚本
Jan 22 #Python
详解Python如何批量采集京东商品数据流程
Jan 22 #Python
用Python实现屏幕截图详解
Jan 22 #Python
Python实现学生管理系统并生成exe可执行文件详解流程
Jan 22 #Python
django中websocket的具体使用
Jan 22 #Python
Django+Nginx+uWSGI 定时任务的实现方法
Jan 22 #Python
梳理总结Python开发中需要摒弃的18个坏习惯
Jan 22 #Python
You might like
新手学PHP之数据库操作详解及乱码解决!
2007/01/02 PHP
完美解决phpdoc导出文档中@package的warning及Error的错误
2016/05/17 PHP
浅谈php fopen下载远程文件的函数
2016/11/18 PHP
PHP实现的激活用户注册验证邮箱功能示例
2017/06/06 PHP
你的编程语言可以这样做吗?
2006/09/07 Javascript
JavaScript使用prototype定义对象类型
2007/02/07 Javascript
ExtJS 2.0 实用简明教程之布局概述
2009/04/29 Javascript
jquery的Theme和Theme Switcher使用小结
2010/09/08 Javascript
Web跨浏览器进程通信(Web跨域)
2013/04/17 Javascript
Jquery validation remote 验证的缓存问题解决方法
2014/03/25 Javascript
JavaScript实现生成GUID(全局统一标识符)
2014/09/05 Javascript
vue.js 表格分页ajax 异步加载数据
2016/10/18 Javascript
jQuery插件扩展操作入门示例
2017/01/16 Javascript
深入理解ES6 Promise 扩展always方法
2017/09/26 Javascript
JS动画定时器知识总结
2018/03/23 Javascript
Nodejs libuv运行原理详解
2019/08/21 NodeJs
JS/CSS实现字符串单词首字母大写功能
2019/09/03 Javascript
js实现轮播图效果 z-index实现轮播图
2020/01/17 Javascript
vue-simple-uploader上传成功之后的response获取代码
2020/09/07 Javascript
解决vue打包报错Unexpected token: punc的问题
2020/10/24 Javascript
python+matplotlib绘制饼图散点图实例代码
2018/01/20 Python
基于循环神经网络(RNN)实现影评情感分类
2018/03/26 Python
Python二叉树定义与遍历方法实例分析
2018/05/25 Python
对TensorFlow中的variables_to_restore函数详解
2018/07/30 Python
python分批定量读取文件内容,输出到不同文件中的方法
2018/12/08 Python
详解opencv Python特征检测及K-最近邻匹配
2019/01/21 Python
创建Django项目图文实例详解
2019/06/06 Python
完美解决pyinstaller打包报错找不到依赖pypiwin32或pywin32-ctypes的错误
2020/04/01 Python
html5教程画矩形代码分享
2013/12/04 HTML / CSS
华为智利官方商店:Huawei Chile
2020/05/09 全球购物
品管员岗位职责
2013/11/10 职场文书
公安局负责人查摆问题及整改方案
2014/09/27 职场文书
2014大学辅导员工作总结
2014/12/02 职场文书
2015年安全生产工作总结范文
2015/04/02 职场文书
pytorch 如何使用float64训练
2021/05/24 Python
Oracle 11g数据库使用expdp每周进行数据备份并上传到备份服务器
2022/06/28 Oracle