input
Prompt the user for input from the console.
Syntax
Section titled “Syntax”user_entry = input(prompt)user_entry = input(prompt, 's')Description
Section titled “Description”Displays prompt and waits for the user to type a response in the console. By default, the response is evaluated as a MathJet expression and returned. With the 's' option, the literal string is returned without evaluation.
Examples
Section titled “Examples”n = input('How many? ')name = input('Your name? ', 's')