python print省略号

521 阅读1分钟

问题

print的东西比较多,然后就以省略号(…)代替了。

在这里插入图片描述

解决方法

(该包基于numpy?)

import numpy as np
np.set_printoptions(threshold=np.inf)

(该包基于pandas?)

import pandas as pd
pd.set_option('display.width',None)