Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,20 @@
feelings_list.append("relieved")
encouragement_list.append("Relax after the stressful examinations by doing what you love")
counter += 1

if each_word == "dead tired":
feelings_list.append("dead tired")
encouragement_list.append("It is okay to take a break, we will be here for you")
counter += 1
if each_word == "sad":
if each_word == "sad":
feelings_list.append("sad")
encouragement_list.append("talk to your friends")
counter += 1
counter += 1
if each_word == "disappointed"
feelings_list.append("disappointed")
encouragement_list.append("it's okay, it's only y1, at least you tried your best!")
counter += 1

if each_word == "terrific":
feelings_list.append("terrific")
encouragement_list.append("yay! Your efforts paid off!")
Expand Down