python读取csv文件最后一行
时间: 2023-05-19 14:00:52 浏览: 39
怎么用python读取csv文件
可以使用pandas库中的read_csv函数来读取csv文件,并使用tail函数获取最后一行数据。代码如下:
```python
import pandas as pd
df = pd.read_csv('file.csv')
last_row = df.tail(1)
print(last_row)
```
其中,'file.csv'是你要读取的csv文件名。
阅读全文