I am a bit new to Python and I want to convert a 1D list to a 2D list, given the width
and length
of this matrix
.
Say I have a list=[0,1,2,3]
and I want to make a 2 by 2
matrix of this list.
How can I get matrix [[0,1],[2,3]]
width
=2, length
=2 out of the list
?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…