python3 中print 显示不全问题
2021-03-29 09:26
标签:panda span option python code display 解决 ons options 如果print显示的结果: 有省略的现象,这个应该也是官方:如果有大数据量的输出,不太好处理,如果我们能确定输出有限且个数比较小,可以全部输出。 解决方法: 加上三行强制显示就OK python3 中print 显示不全问题 标签:panda span option python code display 解决 ons options 原文地址:https://www.cnblogs.com/hello-wei/p/13609111.html28 -0.521884
29 0.388389
...
970 -1.873332
971 -1.962243
import pandas as pd
import numpy as np
np.set_printoptions(threshold=np.inf)
pd.set_option(‘display.width‘, 300) # 设置字符显示宽度
pd.set_option(‘display.max_rows‘, None) # 设置显示最大行
pd.set_option(‘display.max_columns‘, None) # 设置显示最大列,None为显示所有列
long_series = pd.Series(np.random.randn(1000))
print (long_series)
上一篇:SpringBoot
下一篇:Python基础(4)——模块
文章标题:python3 中print 显示不全问题
文章链接:http://soscw.com/index.php/essay/69455.html