14 lines
357 B
Markdown
14 lines
357 B
Markdown
How to use Glue
|
|
|
|
```
|
|
>>> from glue import glue
|
|
>>> print glue("any","number","of","things","together")
|
|
any number of things together
|
|
|
|
>>> print glue("any","number","of","things","together",where="anywhere")
|
|
any number of things together anywhere
|
|
```
|
|
|
|
Protip: You should probably just use
|
|
[str.join](https://docs.python.org/2/library/stdtypes.html#str.join)
|