Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Assignment 1 - Famous Personality Chatbot Title: Famous Personality Chatbot Step 1 - Problem Statement: Create a Famous Personality chatbot. To do so , first,
Assignment Famous Personality Chatbot
Title: Famous Personality Chatbot
Step Problem Statement:
Create a Famous Personality chatbot. To do so first, you need to choose a famous person: actoractress singer musician, animecartoonfairy tale character, sport player the choice is yours! Then, you must create a chatbot that is this famous person "conversing" with the user.
Requirements:
You must create your own Python program using IDLE. You cannot use AI tools to create your program nor can you use someone else's program. For more details regarding Academic Honesty or lack of and what is permissible and what is not, please, read A word about Academic Honesty under Lecture on our course web site.
Your chatbot program must start when the menu option Run is selected or F is pressed once we have opened your program file in IDLE.
Your chatbot must ask the user at least questions.
When writing your chatcbot, you must use at least one of each of the following three conditional statement variants:
if with no elif and no else
ifelse and
ifelifelse this one may have several elif
In other words, you must use the conditional statement if with no el if and no else at least once, you must use the conditional statement ifelse at least once and you must use the conditional statement ifelifelse this one may have several elif
Your chatbot must use the answer input from the user in some of its responsescomments
Your chatbot must use the keyword or in the condition of at least two conditional statements if ifelse and ifelifelse to accept at least two different input strings from the user, as illustrated in this example:
if favSport "Football" or favSport "football":
Your program must have a header comment block containing the expected sections sections and located at the expected place in your program.
Your program must follow these Good Programming Style GPS rules:
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started