Python input() - Python Examples
pythonexamples.org › python-inputSyntax – input() Following is the syntax of input() function. x = input(prompt) where prompt is a string, that is printed to the standard output, before input() function starts reading the value input by user. prompt is helpful in letting the users know what kind of input the application is expecting, something like a clue. Prompt is optional though.