Fundamentals 12 min read

Create Romantic Python Art: From Simple Heart to Starry‑Sky Confession

This tutorial shows how to celebrate 520 with Python by drawing hearts, roses, and a starry‑sky confession using turtle graphics, pygame, and image‑processing code, providing beginner, intermediate, and advanced examples complete with source code and visual results.

Open Source Linux
Open Source Linux
Open Source Linux
Create Romantic Python Art: From Simple Heart to Starry‑Sky Confession

Beginner Level

1. One‑line heart

print('
'.join([''.join([('Love'[(x-y)%4] 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(15,-15,-1)]))

Result

2. Turtle heart with text

import turtle
import math
t = turtle
t.up()
t.goto(0,150)
t.down()
t.color('red')
t.begin_fill()
# ... drawing commands ...
t.end_fill()
# write letters L O V E using turtle moves

Result

Intermediate Level

1. Turtle rose with text

#!/usr/bin/env python
# coding: utf-8
import turtle
turtle.setup(width=0.6, height=0.6)
# ... draw rose petals, fill, and write messages ...

Result

2. Turtle heart with tree recursion

import turtle, random
def love(x, y):
    # draw small heart at (x, y)
    ...

def tree(branchLen, t):
    if branchLen > 5:
        # recursive branch drawing with random colors
        ...

myWin = turtle.Screen()
t = turtle.Turtle()
# set up scene and call tree()

Result

Advanced Level

1. Starry‑sky confession

"""
Code purpose: confession
Author: OpenSourceLinux
"""
import pygame, random
# load background music, set up screen, draw moving stars, display love messages
# pause/play with mouse/keyboard events

Result

2. Photo‑wall collage

#!/usr/bin/env python
# encoding: utf-8
from PIL import Image
import cv2, os
# read base image, divide into tiles, paste random small pictures, blend with original

Result

All code snippets can be obtained by replying “520” to the original WeChat public account.

Original Source

Signed-in readers can open the original source through BestHub's protected redirect.

Sign in to view source
Republication Notice

This article has been distilled and summarized from source material, then republished for learning and reference. If you believe it infringes your rights, please contactadmin@besthub.devand we will review it promptly.

GraphicsPythonTutorialturtlePygamelovecode art
Open Source Linux
Written by

Open Source Linux

Focused on sharing Linux/Unix content, covering fundamentals, system development, network programming, automation/operations, cloud computing, and related professional knowledge.

0 followers
Reader feedback

How this landed with the community

Sign in to like

Rate this article

Was this worth your time?

Sign in to rate
Discussion

0 Comments

Thoughtful readers leave field notes, pushback, and hard-won operational detail here.