Skip to content
Open
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions Doc/library/stdtypes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2186,15 +2186,23 @@ expression support in the :mod:`re` module).
False



.. _meth-str-join:

.. method:: str.join(iterable, /)

Return a string which is the concatenation of the strings in *iterable*.
A :exc:`TypeError` will be raised if there are any non-string values in
*iterable*, including :class:`bytes` objects. The separator between
elements is the string providing this method.
elements is the string providing this method. For example:

.. doctest::

>>> ', '.join(['spam', 'spam', 'spam'])
'spam, spam, spam'
>>> '-'.join('Python')
'P-y-t-h-o-n'

See also :meth:`split`.


.. method:: str.ljust(width, fillchar=' ', /)
Expand Down Expand Up @@ -2408,6 +2416,8 @@ expression support in the :mod:`re` module).
>>> " foo ".split(maxsplit=0)
['foo ']

See also :meth:`join`.


.. index::
single: universal newlines; str.splitlines method
Expand Down
Loading