## decode()


Decode bytes to a string.


Usage


``` python
decode(
    data,
    encoding="utf-8",
)
```


## Parameters


`data: bytes`  
The bytes to decode.

`encoding: str = ``"utf-8"`  
The source encoding.


## Returns


`str`  
The decoded string.
