pandas.Series.str.isdecimal#
- Series.str.isdecimal()[source]#
Check whether all characters in each string are decimal.
This is equivalent to running the Python string method
str.isdecimal()
for each element of the Series/Index. If a string has zero characters,False
is returned for that check.- Returns:
- Series or Index of bool
Series or Index of boolean values with the same length as the original Series/Index.
See also
Series.str.isalpha
Check whether all characters are alphabetic.
Series.str.isnumeric
Check whether all characters are numeric.
Series.str.isalnum
Check whether all characters are alphanumeric.
Series.str.isdigit
Check whether all characters are digits.
Series.str.isspace
Check whether all characters are whitespace.
Series.str.islower
Check whether all characters are lowercase.
Series.str.isupper
Check whether all characters are uppercase.
Series.str.istitle
Check whether all characters are titlecase.
Examples
The
s3.str.isdecimal
method checks for characters used to form numbers in base 10.>>> s3 = pd.Series(['23', '³', '⅕', '']) >>> s3.str.isdecimal() 0 True 1 False 2 False 3 False dtype: bool