-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmid_end_acts.py
24 lines (16 loc) · 878 Bytes
/
mid_end_acts.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
from datetime import datetime
from datetime import time
import random as rnd
def mid_act():
cont = ["Is there anything else I can help you with?" , "Is there anything else?", "Is there something else I can help you with?",
"Can I help you with something else?", "Do you need help with something else?", "Is there anything else I can assist you?",
"Do you need help with something else?"]
index = rnd.randint(0, len(cont))
dropbomb = cont[index-1]
return dropbomb
def closing_act():
cont = ["Goodbye." , "Glad that I could help.", "Feel free to ask me anytime.", "I'm always here to help anytime",
"See you again.", "See you later.", "Goodbye for now."]
index = rnd.randint(0, len(cont))
dropbomb = cont[index-1]
return dropbomb