character, for example uppercase characters may only follow uncased characters
and lowercase characters only cased ones. Return ``False`` otherwise.
+ For example:
+
+ .. doctest::
+
+ >>> 'Spam, Spam, Spam'.istitle()
+ True
+ >>> 'spam, spam, spam'.istitle()
+ False
+ >>> 'SPAM, SPAM, SPAM'.istitle()
+ False
+
+ See also :meth:`title`.
+
.. method:: str.isupper()
>>> titlecase("they're bill's friends.")
"They're Bill's Friends."
+ See also :meth:`istitle`.
+
.. method:: str.translate(table, /)