python 使用pandas判断空字符
时间: 2023-11-10 15:16:43 浏览: 95
pandas笔记.md
你可以使用pandas中的isna()或isnull()函数来判断空字符。这些函数将返回一个布尔值,表示每个元素是否为空字符。以下是一个示例代码:
```python
import pandas as pd
data = pd.Series(['', 'hello', None, 'world', ''])
# 使用isna()函数判断空字符
print(data.isna())
# 使用isnull()函数判断空字符
print(data.isnull())
```
运行上述代码,你会得到以下输出:
```
0 True
1 False
2 True
3 False
4 True
dtype: bool
0 True
1 False
2 True
3 False
4 True
dtype: bool
```
其中,输出结果中的True表示对应位置为空字符,False表示不为空字符。
阅读全文