https://github.com/python/cpython/commit/9f5191f8e78febdb3a0f61f50ca4f20db7748978 commit: 9f5191f8e78febdb3a0f61f50ca4f20db7748978 branch: 3.14 author: Miss Islington (bot) <[email protected]> committer: vstinner <[email protected]> date: 2026-02-04T17:23:55Z summary:
[3.14] gh-106318: Add examples for `str.startswith()` method (GH-144369) (#144481) gh-106318: Add examples for `str.startswith()` method (GH-144369) (cherry picked from commit 1b6d737ee0205521333cf5fe6ca6df2d3a6d4ec2) Co-authored-by: Adorilson Bezerra <[email protected]> Co-authored-by: Stan Ulbrych <[email protected]> files: M Doc/library/stdtypes.rst diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 7b983f25c46e60..23364b92ba39e9 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -2751,6 +2751,19 @@ expression support in the :mod:`re` module). test string beginning at that position. With optional *end*, stop comparing string at that position. + For example: + + .. doctest:: + + >>> 'Python'.startswith('Py') + True + >>> 'a tuple of prefixes'.startswith(('at', 'a')) + True + >>> 'Python is amazing'.startswith('is', 7) + True + + See also :meth:`endswith` and :meth:`removeprefix`. + .. method:: str.strip(chars=None, /) _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
