df.index.str.startswith('0')
时间: 2024-04-07 19:30:02 浏览: 73
python pandas.DataFrame.loc函数使用详解
你想使用`.str.startswith('0')`来检查DataFrame索引中以'0'开头的值。这将返回一个布尔值的Series,指示索引是否满足条件。
以下是一个示例:
```python
import pandas as pd
# 创建一个示例DataFrame
data = {'col1': [1, 2, 3, 4], 'col2': [5, 6, 7, 8]}
df = pd.DataFrame(data, index=['01', '02', '10', '11'])
# 使用.str.startswith('0')检查索引
result = df.index.str.startswith('0')
print(result)
```
输出结果将是:
```
01 True
02 True
10 False
11 False
dtype: bool
```
这表示索引'01'和'02'以'0'开头,而索引'10'和'11'不是以'0'开头。
阅读全文