Skip to main content
Python String istitle() Method
Python String istitle() Method
The istitle() method returns True if all
words in a text start with a upper case letter, AND the rest of the word are
lower case letters, otherwise False.
Syntax
string.istitle()
Parameter Values
Comments
Post a Comment