目前我所知道的有两种数据在控制台被截断输出
pandas的DataFrame数据结构
#解决方案
print(data.to_string(index=False))
强制转化为字符串进行输出,括号内参数为舍弃DataFrame的索引部分,可省略保留索引
numpy的ndarray数据结构
#这一句就不要动了,设置打印选项以显示所有元素
np.set_printoptions(threshold=np.inf)
print(data)#全部打印
tensor
# 设置打印选项,将数据全部打印展示,不被省略
torch.set_printoptions(threshold=torch.inf)
print(X)