Question: Overview Write a program to ask the user for an input and then print the input. Description Create an input prompt for the user matching
Overview
Write a program to ask the user for an input and then print the input.
Description
Create an input prompt for the user matching the required description and then respond to it
Objective
Learn to use the Python input function to prompt the user for a specific input, and save it into a variable.
Print a message that has an embedded quote mark.
Create a program to prompt the user for two pieces of information using a specific question and then output the input as a response.
Your prompts for input must be exactly the following:
Enter a name:
Enter a movie title:
Notice that your prompt must end with a colon character followed by a space. Even though you cant see the space, the computer knows its there are will look for it when grading your submission. Your program will run just fine if you dont put the colon and space, but it will not pass the autograded test cases with the Check It button. You should run your program several times in development mode, trying it with several different inputs, before you try to submit it for grading. Once you do note that the graded submission reports the expected output with the prompts written out prior to the output. Also try running without the space in the prompt, without the colon, and with various inputs like maybe weird charcters in a movie name so you can see how the autograder reports various types of errors.
Example: If the input is
Hack Clack
Pulp Fiction
Then the output is:
Hello Hack Clack,
I recommend you watch Pulp Fiction it's a classic!
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
