Join a list of strings into one string

suggest change

A string can be used as a separator to join a list of strings together into a single string using the join() method. For example you can create a string where each element in a list is separated by a space.

>>> " ".join(["once","upon","a","time"])
"once upon a time"

The following example separates the string elements with three hyphens.

>>> "---".join(["once", "upon", "a", "time"])
"once---upon---a---time"

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents