-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresponses.py
58 lines (55 loc) · 1.47 KB
/
responses.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import pandas as pd
def respond(message) -> str:
msg = message.lower()
// bot responses, i plan to use csv file or whatever for this later on
if msg == 'alpha':
return 'Αα'
elif msg == 'beta':
return 'Ββ'
elif msg == 'gamma':
return 'Γγ'
elif msg == 'delta':
return 'Δδ'
elif msg == 'epsilon':
return 'Εε'
elif msg == 'zeta':
return 'Ζζ'
elif msg == 'heta':
return 'Ηη'
elif msg == 'theta':
return 'Θθ'
elif msg == 'iota':
return 'Ιι'
elif msg == 'kappa':
return 'Κκ'
elif msg == 'lambda':
return 'Λλ'
elif msg == 'mu':
return 'Μμ'
elif msg == 'nu':
return 'Νν'
elif msg == 'xi':
return 'Ξξ'
elif msg == 'omimcron':
return 'Οο'
elif msg == 'pi':
return 'Ππ'
elif msg == 'rho':
return 'Ρρ'
elif msg == 'sigma':
return 'Σσς'
elif msg == 'tau':
return 'Ττ'
elif msg == 'upsilon':
return 'Υυ'
elif msg == 'phi':
return 'Φφ'
elif msg == 'chi':
return 'Χχ'
elif msg == 'psi':
return 'Ψψ'
elif msg == 'omega':
return 'Ωω'
elif msg == '!help':
return 'Input a greek letter and I will provide the symbol. \n Example: \n input: psi \n output: Ψψ'
#return 'Sorry, I do not seem to know that'