如果一个数组太长,则NumPy自动省略中间部分而只打印两端的数据:
可通过设置printoptions参数来禁用NumPy的这种行为并强制打印整个数组。
set_printoptions(threshold='nan')
这样,输出时数组的所有元素都会显示出来。
如果一个数组太长,则NumPy自动省略中间部分而只打印两端的数据:
可通过设置printoptions参数来禁用NumPy的这种行为并强制打印整个数组。
set_printoptions(threshold='nan')
这样,输出时数组的所有元素都会显示出来。
转载于:https://www.cnblogs.com/santian/p/5706437.html