📜  python将范围分成n组 - Python代码示例

📅  最后修改于: 2022-03-11 14:47:03.143000             🧑  作者: Mango

代码示例3
import numpy
x = range(25)
l = numpy.array_split(numpy.array(x),6)