String Input
String Input
05 String Input
Part One: Write a program to simulate a chatbot conversation. Use the following guidelines to write your
program:
Input:
Comment: Name, Date, Description
Def main()
User inputs his or her name
User inputs his or her age
User inputs his or her country of residence
Part Two: Code the program. Use the following guidelines to code your program.
1. Code the program using Python IDLE. 3. Use meaningful names for all variables.
2. Using comments, type a heading that 4. Follow the Python style conventions
includes your name, today’s date, and a regarding indentation and the use of
short description of the program. white space in your program.
Example of expected output: The output for your program should resemble the following screen shot.
Your specific results will vary depending on the choices you make about the conversation and the input
provided.
Insert a copy of your code from the IDLE here:
# Date: 9/22/20
def main():
print(“My name is Moby, and I am 14 years old. How old are you?”)
main()
Part Three: Complete the Post Mortem Review (PMR). Write thoughtful two to three sentence responses
to all the questions in the PMR chart.
Review Question Response
What was the purpose of your
program?