- API reference
- Series
- pandas.Serie...
pandas.Series.str.istitle#
- Series.str.istitle()[source]#
Check whether all characters in each string are titlecase.
This is equivalent to running the Python string method
str.istitle()for each element of the Series/Index. If a stringhas zero characters,Falseis returned for that check.- Returns:
- Series or Index of bool
Series or Index of boolean values with the same length as the originalSeries/Index.
See also
Series.str.isalphaCheck whether all characters are alphabetic.
Series.str.isnumericCheck whether all characters are numeric.
Series.str.isalnumCheck whether all characters are alphanumeric.
Series.str.isdigitCheck whether all characters are digits.
Series.str.isdecimalCheck whether all characters are decimal.
Series.str.isspaceCheck whether all characters are whitespace.
Series.str.islowerCheck whether all characters are lowercase.
Series.str.isupperCheck whether all characters are uppercase.
Series.str.istitleCheck whether all characters are titlecase.
Examples
Checks for Alphabetic and Numeric Characters
>>>s1=pd.Series(['one','one1','1',''])
>>>s1.str.isalpha()0 True1 False2 False3 Falsedtype: bool
>>>s1.str.isnumeric()0 False1 False2 True3 Falsedtype: bool
>>>s1.str.isalnum()0 True1 True2 True3 Falsedtype: bool
Note that checks against characters mixed with any additional punctuationor whitespace will evaluate to false for an alphanumeric check.
>>>s2=pd.Series(['A B','1.5','3,000'])>>>s2.str.isalnum()0 False1 False2 Falsedtype: bool
More Detailed Checks for Numeric Characters
There are several different but overlapping sets of numeric characters thatcan be checked for.
>>>s3=pd.Series(['23','³','⅕',''])
The
s3.str.isdecimalmethod checks for characters used to form numbersin base 10.>>>s3.str.isdecimal()0 True1 False2 False3 Falsedtype: bool
The
s.str.isdigitmethod is the same ass3.str.isdecimalbut alsoincludes special digits, like superscripted and subscripted digits inunicode.>>>s3.str.isdigit()0 True1 True2 False3 Falsedtype: bool
The
s.str.isnumericmethod is the same ass3.str.isdigitbut alsoincludes other characters that can represent quantities such as unicodefractions.>>>s3.str.isnumeric()0 True1 True2 True3 Falsedtype: bool
Checks for Whitespace
>>>s4=pd.Series([' ','\t\r\n ',''])>>>s4.str.isspace()0 True1 True2 Falsedtype: bool
Checks for Character Case
>>>s5=pd.Series(['leopard','Golden Eagle','SNAKE',''])
>>>s5.str.islower()0 True1 False2 False3 Falsedtype: bool
>>>s5.str.isupper()0 False1 False2 True3 Falsedtype: bool
The
s5.str.istitlemethod checks for whether all words are in titlecase (whether only the first letter of each word is capitalized). Words areassumed to be as any sequence of non-numeric characters separated bywhitespace characters.>>>s5.str.istitle()0 False1 True2 False3 Falsedtype: bool