## to_string()


Convert an object to its string representation.


Usage


``` python
to_string(obj)
```


## Parameters


`obj: object`  
The object to convert.


## Returns


`str`  
The string representation of the object.


## Examples

``` python
>>> to_string(42)
```

'42'
