forked from reecola/cora_mentalhealth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.py
55 lines (42 loc) · 2 KB
/
app.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
print("Title of program: mental health bot")
print()
while True:
description = input("how are you feeling today?")
list_of_words = description.split()
feelings_list = []
encouragement_list = []
counter = 0
for each_word in list_of_words:
if each_word == "sad":
feelings_list.append("sad")
encouragement_list.append("tomorrow will be a better day, cry if you have to it's okay to be vulnerable at times")
counter += 1
if each_word == "lost":
feelings_list.append("lost")
encouragement_list.append("i understand that you're going through a tough time now and it's okay to feel lost at time, maybe it's just time to take a rest and focus on yourself")
counter += 1
if each_word == "tired":
feelings_list.append("tired")
encouragement_list.append("you are stronger than you think think of how far you have come, why can't you go any furhter? jiayous! you are not alone please don't give up ")
counter += 1
if each_word == "alone":
feelings_list.append("alone")
encouragement_list.append("you are NOT facing this alone you have people who CARE about YOU we're in this TOGETHER!! remember that please ")
counter += 1
if counter == 0:
output = "sorry I don't really understand. please use different words?"
elif counter == 1:
output = "and it is okay to feel this way " + feelings_list[0] + ". however, do remember that "+ encouragement_list[0] + "! you got this hope you feel better :)"
else:
feelings = ""
for i in range(len(feelings_list)-1):
feelings += feelings_list[i] + ", "
feelings += "and " + feelings_list[-1]
encouragement = ""
for j in range(len(encouragement_list)-1):
encouragement += encouragement_list[i] + ", "
encouragement += "and " + encouragement_list[-1]
output = "It seems that you are feeling quite " + feelings + ". Please always remember "+ encouragement + "! Hope you feel better :)"
print()
print(output)
print()