Answer:
input("What is your name?")
The input function prompts the user to enter a value, and then returns the value as a string.
Here's an example of how you might use it in a program:
name = input("What is your name?")
print("Hello, " + name + "!")
This will print out a message like "Hello, John!" if the user enters "John" as their name.