# Number.to_string ## Function Convert numbers to strings. ## Syntax ```bt number.to_string() ``` ## Parameters No parameters. ## Return value | Type | Description | | ------ | ------ | | String | Returns the string representation of a number. | ## Example ```bt num = 42 result = num.to_string() // Output: 42 print result ``` ## Notes - The .0 at the end of floating point numbers is omitted according to BT stringification rules.