The istitle() returns True if the string is a titlecased string otherwise it returns False.
what is titlecased ?
String which has the first character in each word Uppercase and remaining all characters Lowercase alphabets.
Syntax :
string.istitle()
Parameters :
The istitle() method doesn’t take any parameters.
Returns :
returns True if the string is a titlecased string otherwise it returns False.
CODE 1
# First character in each word is # uppercase and remaining lowercases s = 'Geeks For Geeks'print(s.istitle()) # First character in first # word is lowercase s = 'geeks For Geeks'print(s.istitle()) # Third word has uppercase # characters at middle s = 'Geeks For GEEKs'print(s.istitle()) s = '6041 Is My Number'print(s.istitle()) # word has uppercase # characters at middle s = 'GEEKS'print(s.istitle()) |
Output :
True False False True False
CODE 2
s = 'I Love Geeks For Geeks' if s.istitle() == True: print('Titlecased String') else: print('Not a Titlecased String') s = 'I Love geeks for geeks' if s.istitle() == True: print('Titlecased String') else: print('Not a Titlecased String') |
Output :
Titlecased String Not a Titlecased String
Attention geek! Strengthen your foundations with the Python Programming Foundation Course and learn the basics.
To begin with, your interview preparations Enhance your Data Structures concepts with the Python DS Course.

