pandas.Series.str.isspace#

Series.str.isspace()[源代码]#

检查每个字符串中的所有字符是否都是空白。

这相当于为 Series/Index 的每个元素运行 Python 字符串方法 str.isspace()。如果一个字符串没有字符,则该检查返回 False

返回:
Series 或 bool 索引

与原始 Series/Index 长度相同的布尔值 Series 或 Index。

参见

Series.str.isalpha

检查所有字符是否为字母。

Series.str.isnumeric

检查所有字符是否为数字。

Series.str.isalnum

检查所有字符是否为字母数字。

Series.str.isdigit

检查所有字符是否为数字。

Series.str.isdecimal

检查所有字符是否为十进制。

Series.str.isspace

检查是否所有字符都是空白。

Series.str.islower

检查是否所有字符都是小写。

Series.str.isupper

检查所有字符是否为大写。

Series.str.istitle

检查所有字符是否为标题大小写。

例子

检查字母和数字字符

>>> s1 = pd.Series(['one', 'one1', '1', ''])
>>> s1.str.isalpha()
0     True
1    False
2    False
3    False
dtype: bool
>>> s1.str.isnumeric()
0    False
1    False
2     True
3    False
dtype: bool
>>> s1.str.isalnum()
0     True
1     True
2     True
3    False
dtype: bool

请注意,对于字母数字检查,任何与字符混合的额外标点符号或空白字符的检查都将评估为假。

>>> s2 = pd.Series(['A B', '1.5', '3,000'])
>>> s2.str.isalnum()
0    False
1    False
2    False
dtype: bool

更多详细的数字字符检查

有几种不同但重叠的数字字符集可以进行检查。

>>> s3 = pd.Series(['23', '³', '⅕', ''])

s3.str.isdecimal 方法检查用于形成十进制数的基本字符。

>>> s3.str.isdecimal()
0     True
1    False
2    False
3    False
dtype: bool

s.str.isdigit 方法与 s3.str.isdecimal 相同,但也包括特殊数字,如unicode中的上标和下标数字。

>>> s3.str.isdigit()
0     True
1     True
2    False
3    False
dtype: bool

s.str.isnumeric 方法与 s3.str.isdigit 相同,但也包括其他可以表示数量的字符,如 Unicode 分数。

>>> s3.str.isnumeric()
0     True
1     True
2     True
3    False
dtype: bool

检查空白

>>> s4 = pd.Series([' ', '\t\r\n ', ''])
>>> s4.str.isspace()
0     True
1     True
2    False
dtype: bool

检查字符大小写

>>> s5 = pd.Series(['leopard', 'Golden Eagle', 'SNAKE', ''])
>>> s5.str.islower()
0     True
1    False
2    False
3    False
dtype: bool
>>> s5.str.isupper()
0    False
1    False
2     True
3    False
dtype: bool

s5.str.istitle 方法检查所有单词是否为首字母大写(每个单词的首字母是否大写)。单词被假定为任何由空白字符分隔的非数字字符序列。

>>> s5.str.istitle()
0    False
1     True
2    False
3    False
dtype: bool