一、问题
代码写着写着,输出一下就变成这样
异常不爽。。。。
不想看到省略号,我想要他全部输出来,方便我待会可以对比
二、解决方法
1、针对numpy
import numpy as np
np.set_printoptions(threshold=np.inf)
2、针对panda
import pandas as pd
pd.set_option('display.width', 1000)
pd.set_option('display.max_rows', None)