Draw swirls of hearts and print an expression of affection
Will you be mine?
Simple Python script to make a pretty display of hearts and say some affectionate words. Uses Turtle graphics to draw shapes.
Original project: github.com/SkylerJaneClark/valentine
pip install valentine
Some Linux distributions do not include the tkinter
library by default in Python.
Even though it is part of the standard library, you may have to install it for valentine
to work:
sudo dnf install python3-tkinter
sudo apt-get update
sudo apt-get install -y python3-tkinter
valentine
Original project: github.com/SkylerJaneClark/valentine
This version adds Python 3 support, packaging, comments, and a click-on-exit.