Kaydet (Commit) a8ed1b01 authored tarafından Andrew M. Kuchling's avatar Andrew M. Kuchling

Rearrange example a bit, and show rpartition() when separator is not found

üst 08f6f476
...@@ -1115,12 +1115,14 @@ Some examples: ...@@ -1115,12 +1115,14 @@ Some examples:
\begin{verbatim} \begin{verbatim}
>>> ('http://www.python.org').partition('://') >>> ('http://www.python.org').partition('://')
('http', '://', 'www.python.org') ('http', '://', 'www.python.org')
>>> (u'Subject: a quick question').partition(':')
(u'Subject', u':', u' a quick question')
>>> ('file:/usr/share/doc/index.html').partition('://') >>> ('file:/usr/share/doc/index.html').partition('://')
('file:/usr/share/doc/index.html', '', '') ('file:/usr/share/doc/index.html', '', '')
>>> (u'Subject: a quick question').partition(':')
(u'Subject', u':', u' a quick question')
>>> 'www.python.org'.rpartition('.') >>> 'www.python.org'.rpartition('.')
('www.python', '.', 'org') ('www.python', '.', 'org')
>>> 'www.python.org'.rpartition(':')
('', '', 'www.python.org')
\end{verbatim} \end{verbatim}
(Implemented by Fredrik Lundh following a suggestion by Raymond Hettinger.) (Implemented by Fredrik Lundh following a suggestion by Raymond Hettinger.)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment