Python Basics
Python Advanced
Python Useful References
Python Useful Resources
Selected Reading
© 2011 TutorialsPoint.COM
|
Python String istitle() Method
Description:
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.
Syntax:
Parameters:
Here is the detail of parameters:
Return Value:
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.
Example:
#!/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:
|
|
|