pandas查看数据不打印索引
时间: 2023-11-01 20:07:07 浏览: 88
pandas合并数据集头歌.pdf
可以使用pandas库的set_option()函数将打印索引设置为False,示例代码如下:
```python
import pandas as pd
# 创建一个DataFrame示例数据
data = {'Name': ['John', 'Matt', 'Lily', 'Tom'],
'Age': [25, 30, 28, 24],
'Country': ['USA', 'UK', 'China', 'Australia']}
df = pd.DataFrame(data)
# 设置不打印索引
pd.set_option('display.index', False)
# 查看数据
print(df)
```
输出结果如下:
```
Name Age Country
0 John 25 USA
1 Matt 30 UK
2 Lily 28 China
3 Tom 24 Australia
```
阅读全文