prompt for user input
x = input(message) x = input(message, "string")
character string
the character string "string"
(may be
abbreviated to "s"
)
real number (or character string if
"string"
is in the syntax)
input(message)
gives the user the prompt in the text string and
then waits for input from the keyboard.
The input can be expression which is evaluated by evstr.
If nothing but a carriage return is
entered at the prompt input(message)
returns an empty matrix.
Invoked with two arguments, the output is a character string which is the
expression entered at keyboard. If nothing but a carriage return is
entered at the prompt, input(message)
returns an empty string.
Version | Description |
6.0.0 | In case where nothing is entered with the string input argument, input returns an empty string instead of a space. |