transfer

How I can transfer matrix in Python?

How I can transfer matrix in Python? Question: #Example: A = [[1,2,3,4],[4,3,2,1],[3,2,1,4],[2,1,4,3]] #How I can transform matrix A become matrix B #with matrix B I want to become… B = [[1], [2], [3], [4], [4], [3], [2], [1], [3], [2], [1], [4], [2], [1], [4], [3]] And when I save .txt or .csv how I …

Total answers: 2