string

string

> Functions

Converts a value to a character string.

Parameters
Return
Python

In Python, str() is the language's native conversion:

Examples

string(12345) // "12345" string([1, 2, 3]) // "[1, 2, 3]" string("hello") // "hello" string(2 > 1) // "true"

See as well
Synonyms