Skip to content

Instantly share code, notes, and snippets.

View theychx's full-sized avatar
🐽
Oink! Oink?

theychx

🐽
Oink! Oink?
View GitHub Profile
@theychx
theychx / letters.py
Last active May 20, 2020 22:50 — forked from vampjaz/letters.py
Print out large ASCII block letters using python
# Original font: http://www.stuffaboutcode.com/2013/08/raspberry-pi-minecraft-twitter.html
LETTERS = {
"a": ["###", "# #", "###", "# #", "# #"],
"b": ["###", "# #", "###", "# #", "###"],
"c": ["###", "# ", "# ", "# ", "###"],
"d": ["## ", "# #", "# #", "# #", "## "],
"e": ["###", "# ", "###", "# ", "###"],
"f": ["###", "# ", "###", "# ", "# "],
"g": ["###", "# #", "###", " #", "###"],
"h": ["# #", "# #", "###", "# #", "# #"],