numpy数组的完整显示

超多numpy数组的完整显示 :
文件开头插入:
import numpy as np
np.set_printoptions(threshold = 1e6)

保存为TXT文本:
with open(‘rating2.txt’,‘w’) as f:
f.write(str(rating_data_avg.reshape(10000,1)))

你可能感兴趣的:(python)