Member of the support class.
c = input(a)
c = input(a, 's')
Requests user input.
| Name | Description |
| a | Specifies the message that requests user input. a is a string. |
| 's' | Specifies that the user input must be a string. |
| Name | Description |
| c | Returns the user input. If you specify 's', c is a string. Otherwise, c is a real scalar. |
A = '...waiting for input:'
C = input(A)