【Python】Pandas列名与值对齐显示,Pandas显示所有行和列,Pandas不换行显示

1.Pandas对齐显示

列名与值不对齐:

【Python】Pandas列名与值对齐显示,Pandas显示所有行和列,Pandas不换行显示_第1张图片

设置:

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

输出数据可以对齐了:

【Python】Pandas列名与值对齐显示,Pandas显示所有行和列,Pandas不换行显示_第2张图片

2.Pandas显示所有行和列

# 显示所有列
pd.set_option('display.max_columns', None)
# # 显示所有行
pd.set_option('display.max_rows', None)

3.pandas不换行显示

# 不换行显示
pd.set_option('display.width', 1000)

你可能感兴趣的:(Python,Python数据分析,python)