str
Convert a value to a string.
- Integers are formatted in base 10.
- Floats are formatted in base 10 and never in exponential notation.
- From labels the name is extracted.
Example
#str(10) \
#str(2.7) \
#str(1e8) \
#str(<intro>)

ParametersParameters are the inputs to a function. They are specified in parentheses after the function name.
Parameters are the inputs to a function. They are specified in parentheses after the function name.
value
The value that should be converted to a string.