I am new to Python and want to resolve WITHOUT NUMPY this case: A script/function that take matrix[x][y] and generate/return x lists l1,l2,...lx each of them with y elements. For example:
matrix=[[1,2,3],[4,5,6],[7,8,9],[10,11,12]]
Expected result:
l1=[1,2,3] l2=[4,5,6] l3=[7,8,9] l4=[10,11,12]