问题
print的东西比较多,然后就以省略号(…)代替了
解决方法
(该包基于numpy?)
import numpy as np
np.set_printoptions(threshold=np.inf)
(该包基于pandas?)
import pandas as pd
pd.set_option('max_colwidth',200)
问题
print的东西比较多,然后就以省略号(…)代替了
解决方法
(该包基于numpy?)
import numpy as np
np.set_printoptions(threshold=np.inf)
(该包基于pandas?)
import pandas as pd
pd.set_option('max_colwidth',200)