python筛选带/的excel日期
时间: 2023-10-18 13:21:44 浏览: 96
Python数据报表之Excel操作模块用法分析
可以使用Python的pandas库来筛选带/的Excel日期。 可以使用pandas库的read_excel()函数读取Excel文件,然后使用str.contains()函数来筛选带/的日期。例如,以下代码可以筛选出Excel表格中日期列中包含/的行:
```python
import pandas as pd
df = pd.read_excel('file.xlsx')
filtered_df = df[df['日期列名'].str.contains('/')]
```
需要将'file.xlsx'替换为你的Excel文件名,将'日期列名'替换为你的日期列的列名。这样筛选后,filtered_df中就只包含日期列中包含/的行了。
阅读全文