爱情来了,火速请教恋爱方式

刚学习python的我,有女朋友了,今天晚上她送了9朵花给我,有没有大佬教我用代码写个关于喜欢的东东⁂((✪⥎✪))⁂

# # 爱心
import time
name = "LOVE"
for char in name.split():
   allChar = []
   for y in range(12, -12, -1):
       lst = []
       lst_con = ''
       for x in range(-30, 30):
            formula = ((x*0.05)**2+(y*0.1)**2-1)**3-(x*0.05)**2*(y*0.1)**3
            if formula <= 0:
                lst_con += char[(x) % len(char)]
            else:
                lst_con += ' '
       lst.append(lst_con)
       allChar += lst
   print('\n'.join(allChar))
   time.sleep(1)

img

# 画爱心
from turtle import *
def curvemove():            #这个函数是为了绘制爱心上方的曲线
    for i in range(200):
        right(1)
        fd(1)

pensize(2)                  #调整画笔粗细
speed(10)                   #调节画笔速度
color('red','red')          #画笔颜色及填充颜色
begin_fill()                #开始填充
left(140)
fd(111.65)
curvemove()                 #调用函数
left(120)
curvemove()                 #调用函数
fd(111.65)
end_fill()                  #结束填充
hideturtle()                #隐藏画笔
done()

img