测试数据
在这里插入图片描述
代码

import pandas as pd         # 导入pandas模块
# 解决数据输出时列名不对齐的问题
pd.set_option('display.unicode.east_asian_width',True)
df = pd.read_excel('data.xlsx')     # 读取excel文件
print(df.head())

输出结果
在这里插入图片描述

pandas默认输出结果,会出现列不对齐或者多行多列显示不全的问题,使用set_option函数可以解决这两个问题。

解决列名不对齐
通过将display.unicode.east_asian_width设置为TRUE,使列名对齐。例如:

pd.set_option('display.unicode.east_asian_width',True)

行列显示不全
通过将display.max_rows和display.max_columns修改为默认输出最大的行数和列数。例如:

pd.set_option('display.max_rows',1000)
pd.set_option('display.max_columns',1000)
Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐