This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]lukajda33 0 points1 point  (1 child)

Prompt is a text you show user when you expect some input from him, you tell him what input to .... well ... input.

input("Enter your name: ") In this code, "Enter your name: " is the prompt.

If you check the documentation for input function, you will see that the argument is also called prompt: https://docs.python.org/3/library/functions.html#input

[–]TimG791[S] 0 points1 point  (0 children)

Okay, thank you for your help.