How Can We Help?
In this tutorial, we will explain how to use Python string istitle() method with basic syntax by example for better understanding.
The String istitle() method returns True if all the string words are properly “title-cased”; otherwise, it returns False.
Syntax:
<string_value/string_variable>.istitle()
Input Parameters:
- string_value / String variable : The string that we want to check whether it’s in title cased or not.
Python Check String is title-cased
We can check the string value it’s properly title-cased or not by simply using the istitle() method. It means the string value has the first character of each word is in uppercase.
Example (1)
#Print the result of istitle() method
data='Python Language'
print ('String variable is a title:', data.istitle())
Output of example (1)
String variable is a title: True
In the above example, the string variable ‘data’ has the first character of each word is in uppercase, so when we checked the title-cased of it by data.istitle() in the print statement, it shows the result as True.
Example (2)
#Print the result of istitle() method
msg='Welcome To oraask'
print ('String variable is a title:',msg.istitle())
Output of example (2)
String variable is a title: False
In the above example, the string variable ‘msg’ has the first character of the first two words only is in title-cased. However, when we checked the title-cased of it by msg.istitle() in the print statement, it shows False. because not all words have title-cased.
In this tutorial, you have learned the string istitle() method in Python. What is it? And how to check whether the string value is title-cased or not.
Hopefully, it was clear and concise.
If you have an inquiry or doubt, don’t hesitate to leave them in a comment. We are waiting for your valuable feedback.
Similar Python String Checking Methods:
- isalnum() : It returns True if all the characters of the string are alphanumeric; otherwise, it returns False.
- isdigit() : It returns True if all the characters of the string are digit; otherwise, it returns False.
- isdecimal() : It returns True if all the characters of the string are decimal; otherwise, it returns False.
- isnumeric() : It returns True if all the characters of the string are numeric; otherwise, it returns False.
- isalpha() : It returns True if all the string characters are in lowercase; otherwise, it returns False.
- islower() : It returns False if all the string characters are in an lowercase; otherwise, it returns False.
- isupper() : It returns False if all the string characters are in an uppercase; otherwise, it returns False.
- isspace() : It returns True if all the characters of a string are whitespace; otherwise, it returns False.
- startswith() : It returns True if the string starts with a given substring between the given start and end index; otherwise, it returns False.
- endswith() : It returns True if the string ends with a given substring between start and end index; otherwise, it returns False.
Related Articles
Python String – Mastering By Practical Examples (Comprehensive Guide)
Python tutorials list:
- Python tutorials list : access all python tutorials.