使用Pandas库时显示不全(省略)的解决办法

原文:https://blog.csdn.net/weekdawn/article/details/81389865

#显示所有列
pd.set_option('display.max_columns', None)
#显示所有行
pd.set_option('display.max_rows', None)
#设置value的显示长度为100,默认为50
pd.set_option('max_colwidth',100)

猜你喜欢

转载自blog.csdn.net/zhu_1997/article/details/89511525