-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsimplebot.py
54 lines (44 loc) · 1.38 KB
/
simplebot.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
#SIMPLE PYTHON CHATBOT
# You : Type your questions from above.
# You will get one reply from [0,1,2]
# ---------------------------------
#Set of Questions and Answers
mydatabase = [
{
"question": "hello",
"answer": ["Hi!","Hello","Whassup"]
},
{
"question": "how are you",
"answer": ["I'm fine..!! How are you doing", "I'm doing good..How are you doing","I'm doing good.. Thanks for asking !..How are you doing"]
},
{
"question": "im good too",
"answer": ["Thats Nice","Thats Awesome","Thats Cool"]
}
]
# ---------------------------------
#Main code
import random
def main():
while True:
question = input("You: ")
got_answer = False
for response in mydatabase:
match = True
for word in response["question"].split():
if word not in question.lower():
match = False
if match:
print("Bot:", response["answer"][random.randint(0,2)])
got_answer = True
break
if not got_answer:
print("Bot:", "Sorry, I didn't get it.")
restart = input("Do you wish to ask new question :")
if restart == "yes":
main()
else :
print("Bye Byee , Have a nice day!!")
#Run Main
main()