first commit
This commit is contained in:
parent
7a1a9440a2
commit
27b52fef6c
5 changed files with 245 additions and 0 deletions
32
2018-2019/letters.py
Normal file
32
2018-2019/letters.py
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
|
||||
letters = {
|
||||
"alpha":("Α","α"),
|
||||
"beta":("Β","β"),
|
||||
"gamma":("Γ","γ"),
|
||||
"delta":("Δ","δ"),
|
||||
"epsilon":("Ε","ε"),
|
||||
"zeta":("Ζ","ζ"),
|
||||
"eta":("Η","η"),
|
||||
"theta":("Θ","θ"),
|
||||
"iota":("Ι","ι"),
|
||||
"kappa":("Κ","κ"),
|
||||
"lambda":("Λ","λ"),
|
||||
"mu":("Μ","μ"),
|
||||
"nu":("Ν","ν"),
|
||||
"xi":("Ξ","ξ"),
|
||||
"omicron":("Ο","ο"),
|
||||
"pi":("Π","π"),
|
||||
"rho":("Ρ","ρ"),
|
||||
"sigma":("Σ","σ"),
|
||||
"tau":("Τ","τ"),
|
||||
"upsilon":("Υ","υ"),
|
||||
"phi":("Φ","φ"),
|
||||
"chi":("Χ","χ"),
|
||||
"psi":("Ψ","ψ"),
|
||||
"omega":("Ω","ω"),
|
||||
"sampi":("Ͳ","ϡ")
|
||||
}
|
||||
|
||||
if __name__=="__main__":
|
||||
for key in letters:
|
||||
print(key)
|
||||
Loading…
Add table
Add a link
Reference in a new issue