Course
Simulator
More
Premium
Log in
Python Function Reference
Functions
join
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'