Skip to content
Open
Changes from all 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
13 changes: 12 additions & 1 deletion Doc/library/stdtypes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1970,7 +1970,18 @@ expression support in the :mod:`re` module).
.. method:: str.index(sub[, start[, end]])

Like :meth:`~str.find`, but raise :exc:`ValueError` when the substring is
not found.
not found. For example:

.. doctest::

>>> 'spam, spam, spam'.index('eggs')
Traceback (most recent call last):
File "<python-input-0>", line 1, in <module>
'spam, spam, spam'.index('eggs')
~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^
ValueError: substring not found

See also :meth:`rindex`.


.. method:: str.isalnum()
Expand Down
Loading