python写入txt文件出现省略号
原因是print不完全,
添加代码设置
np.set_printoptions(threshold=np.nan)
如果报错
ValueError: threshold must be numeric and non-NAN, try sys.maxsize for untruncated representation
只需要import sys
设置np.set_printoptions(threshold=sys.maxsize)或者将阈值设置在一个较大的数值就可以了
python写入txt文件出现省略号
最新推荐文章于 2023-07-17 00:20:07 发布