[go: up one dir, main page]

0% found this document useful (0 votes)
24 views2 pages

Beginner Python Chatbot Script

The document contains the Python code for a simple chatbot program that asks the user for their name, if they like coding, and their favorite movie. It then provides responses based on the user's input, such as saying they have things in common if the favorite movie is also Baahubali. The code runs the chatbot interactions and ends by saying it was nice talking to the user.

Uploaded by

Uday Kumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
24 views2 pages

Beginner Python Chatbot Script

The document contains the Python code for a simple chatbot program that asks the user for their name, if they like coding, and their favorite movie. It then provides responses based on the user's input, such as saying they have things in common if the favorite movie is also Baahubali. The code runs the chatbot interactions and ends by saying it was nice talking to the user.

Uploaded by

Uday Kumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

8:11 PM / 14.

2KB/s
<
Vo 4G
58
LTE
print("Curious Chatbot")
Goal
Hint
1
2
3 ame
=
...
input("What is your name?")
Hint
x t
Goal
Hint
O
.k
1 print("Curious Chatbot")
2
3
name = input("What is your name?")
4
5
print("Hello",name,"! Nice to meet you!")
6
k
7
doYouLikeCoding = input("Do you like coding? (y/n)")
8
9
if (doYouLikeCoding=='y' or doYouLikeCoding== 'Y'):
th
10
print("Great! You have come to the right place then!")
11
if (doYouLikeCoding== 'n' or doYouLikeCoding== 'N'):
12
print("Aww shucks! I just love coding. I think you'll like it too when you know how
much fun it is!")
k
13
14 favoriteMovie = input("Which is your favorite movie?")
15
to
16
if (favoriteMovie=='Baahubali'):
O
17
print("Mine too!!! We have so much in common!")
118
else:
19
print("That is a great movie! Mine is Baahubali!!.")
20
21
print("It was nice talking to you! Bye..")
22
u
23
21 -int("It was nice talking to you!
22
23
||
TAB
#
/ Run
Continue Learning
ic
n

You might also like