Copyright © tutorialspoint.com
This method checks whether all the case-based characters in the string following non-casebased letters are uppercase and all other case-based characters are lowercase.
str.istitle() |
Here is the detail of parameters:
NA
It returns true if the string is a titlecased string and there is at least one character, for example uppercase characters may only follow uncased characters and lowercase characters only cased ones. Returns false otherwise.
#!/usr/bin/python str = "This Is String Example...Wow!!!"; print str.istitle(); str = "This is string example....wow!!!"; print str.istitle(); |
This will produce following result:
True False |
Copyright © tutorialspoint.com