Skip to content

Instantly share code, notes, and snippets.

@bwengals
bwengals / greek_alphabet.py
Created March 19, 2017 08:06 — forked from beniwohli/greek_alphabet.py
A Python dictionary mapping the Unicode codes of the greek alphabet to their names
greek_alphabet = {
u'\u0391': 'Alpha',
u'\u0392': 'Beta',
u'\u0393': 'Gamma',
u'\u0394': 'Delta',
u'\u0395': 'Epsilon',
u'\u0396': 'Zeta',
u'\u0397': 'Eta',
u'\u0398': 'Theta',
u'\u0399': 'Iota',