pandas读取文件显示所有列和所有行

#显示所有列
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/longe20111104/article/details/88557697