Created
October 22, 2020 23:41
-
-
Save andrewh/566413dd43c4c88947fc04a05389457a to your computer and use it in GitHub Desktop.
Print the Greek alphabet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
print(""" | |
α Α = alpha | |
β Β = beta | |
γ Γ = gamma | |
δ Δ = delta | |
ε Ε = epsilon | |
ζ Ζ = zeta | |
η Η = eta | |
θ Θ = theta | |
ι Ι = iota | |
κ Κ = kappa | |
λ Λ = lambda | |
μ Μ = mu | |
ν Ν = nu | |
ξ Ξ = xi | |
ο Ο = omicron | |
π Π = pi | |
ρ Ρ = rho | |
σ Σ = sigma | |
τ Τ = tau | |
υ Υ = upsilon | |
φ Φ = phi | |
χ Χ = chi | |
ψ Ψ = psi | |
ω Ω = omega | |
""") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment