Python Function Reference

join
Return a string which is the concatenation of the strings in iterable.
Python 3.13
str.join(iterable)
iterable
An iterable object containing strings.
Examples
Python 3.13
>>> ' '.join(['hello', 'world'])
'hello world'