## showcase()


Showcase a list of items as a formatted string.


Usage


``` python
showcase(items)
```


## Parameters


`items: list`  
The items to showcase.


## Returns


`str`  
A formatted string of all items.


## Examples

``` python
>>> showcase(["a", "b", "c"])
```

'a, b, c'
