The method istitle() checks whether all the case-based characters in the string following non-casebased letters are uppercase and all other case-based characters are lowercase.
NA
str.istitle()
#!/usr/bin/python str = "This Is String Example...Wow!!!"; print str.istitle() str = "This is string example....wow!!!"; print str.istitle()
When we run above program, it produces following result −
True False