from turtle import *
from time import sleep
def go_to(x, y):
up()
goto(x, y)
down()
def small_Circle(size):# 函数用于绘制心的小圆
speed(10)
for i in range(210):
forward(size)
right(0.786)
def big_Circle(size):# 函数用于绘制心的大圆
speed(10)
for i in range(150):
forward(size)
right(0.3)
def line(size):
speed(10)
forward(51 * size)
def heart(x, y, size):
go_to(x, y)
left(150)
begin_fill()
line(size)
big_Circle(size)
small_Circle(size)
left(120)
small_Circle(size)
big_Circle(size)
line(size)
end_fill()
def main():
pensize(2)
color('red', 'pink')
getscreen().tracer(1, 0)
heart(100, 0, 0.7)
go_to(80, 70)
write("先生", font=("楷体", 18, "normal"))
setheading(0)
heart(-80, -100, 1)
go_to(-110, 15)
write("小姐", font=("宋体", 20, "normal"))
go_to(40, -80)
write("我们在一起吧", move=True, align="left", font=("arial", 22, "italic"))
done()
main()
文章图片
【用python实现表白】拿去给你喜欢的人表白吧!
推荐阅读
- #|送小公主——哆啦A梦(Python代码实现)
- #|她很焦虑,是时候送一波更高级的玫瑰(Python&Matlab实现)
- #|你值得拥有——流星雨下的告白(Python实现)
- #|信息时代——微信防撤回(Python实现)
- 密码学|遨游密码世界(一)
- 人工智能|人工智能---深度学习从感知机到神经网络
- 算法|Python中机器学习神器——sklearn模块
- Python基础|05.三大神器助力Python开发-Python环境搭建(一)
- python|基于股票大数据分析的Python入门实战(实践记录)(持续更新)