python dataframe怎么提取前20行
时间: 2023-03-27 10:02:26 浏览: 373
使用Python的Dataframe取两列时间值相差一年的所有行方法
您可以使用 pandas 库中的 head() 方法来提取前 20 行数据,示例代码如下:
```python
import pandas as pd
# 读取数据
df = pd.read_csv('data.csv')
# 提取前 20 行数据
df_head = df.head(20)
# 打印前 20 行数据
print(df_head)
```
阅读全文