numpy生成等间隔数组

np.around(np.linspace(0,1,10),1)
#output is [0.  0.1 0.2 0.3 0.4 0.6 0.7 0.8 0.9 1. ]

你可能感兴趣的:(代码,numpy,python)