Chapter 2: Problem 17
You need the user of a program to enter a customer's last name. Write a statement that prompts the user to enter this data and assigns the input to a variable.
Short Answer
Expert verified
Answer: The 'input()' function in Python is used to display a prompt to the user, allowing them to enter some data through the keyboard. The function collects the entered data and returns it as a string. When we assign this function to a variable, the user input is stored in that variable. For example, in the code `last_name = input("Please enter the customer's last name: ")`, the 'input()' function prompts the user to enter the customer's last name and stores the entered data in the 'last_name' variable.