What does input("Enter your name: ") do when a Python program reaches it?
input("Enter your name: ")
It displays the prompt, waits for Enter, and returns the typed text.
It displays the prompt and immediately returns the prompt text.
It reads a name without waiting for keyboard input.
It prints the user's text as final output automatically.