SoFunction
Updated on 2024-10-29

Python implementation of drawing peach hearts for confessions

python draw peach heart confession

python using turtle to draw simple patterns is more convenient, freshman learning python turtle module, remember to draw a variety of patterns, such as flags, hearts and other patterns, the final course design may also encounter the drawing of 54 playing cards, when the roommate was forced to choose this question.

Sometimes programmers encounter their own quietly like the girl and do not dare to confess, then use turtle to realize the confession it !!!!!!!

Here's the program

import turtle
import time
def LittleHeart():
    for i in range(200):
        (1)
        (2)
isLove=input('Will you always love her?' (Y or N)\n')
 
run =1
while(run):
    if isLove=="Y":
        me=""
        love=""
        if love=='': 
            love=' Strawberry I love you'
        (width=900, height=500)
        ('red','red')
        (3)
        (50)
        ()
        ()
        (0,-180)
        ()
        ()
        (5)
        turtle.begin_fill()
        (140)
        (224)
        LittleHeart()
        (120)
        LittleHeart()
        (224)
        turtle.end_fill()
        (5)
        ()
        ()
        (0,0)
        ()
        ('#CD5C5C','blue')
        (love,font=('gungsuh',30,),align="center")
        ()
        ()
        if me !='':
            ('yellow', 'red')
            (2)
        (180,-180)
        ()
        (me, font=(20,), align="center", move=True)
        window=()
        ()
        run =0
 
       
    else:
         print("Deserves to be single for the rest of his life.")
         print("!!!!!!!!! ReI'm giving you a chance.!!!!!!!!")
         isLove=input('Will you always love her?' (Y or N)\n')
         continue

Running results:

Drawing hearts in one line of Python code

1. Draw the heart code composed of I

print('\n'.join([''.join([('I'[(x-y) % len('I')]if ((x*0.05)**2+(y*0.1)**2-1)**3-(x*0.05)**2*(y*0.1)**3 <= 0 else ' ')for x in range(-30, 30)])for y in range(30, -30, -1)]))

2、Drawing Love composed of heart-shaped code

print('\n'.join([''.join([('Love'[(x-y) % len('Love')]if ((x*0.05)**2+(y*0.1)**2-1)**3-(x*0.05)**2*(y*0.1)**3 <= 0 else ' ')for x in range(-30, 30)])for y in range(30, -30, -1)]))

3. Drawing the heart code composed of You

print('\n'.join([''.join([('You'[(x-y) % len('You')]if ((x*0.05)**2+(y*0.1)**2-1)**3-(x*0.05)**2*(y*0.1)**3 <= 0 else ' ')for x in range(-30, 30)])for y in range(30, -30, -1)]))

4, drawing Raven composed of heart-shaped code

print('\n'.join([''.join([('Raven'[(x-y) % len('Raven')]if ((x*0.05)**2+(y*0.1)**2-1)**3-(x*0.05)**2*(y*0.1)**3 <= 0 else ' ')for x in range(-30, 30)])for y in range(30, -30, -1)]))

The above is a personal experience, I hope it can give you a reference, and I hope you can support me more.