DEV Community

SalahElhossiny
SalahElhossiny

Posted on

4 2

How to get matrix columns without numpy in Python


mat = [
        [1, 2,3, 5], 
        [4, 6, 7, 8], 
        [9, 10, 11, 12], 
        [13, 14, 15, 16]
    ]


def convertToArr(el):
    return list(el)

cols = list(map(convertToArr, list(zip(*mat))))

print(cols)  # [[1, 4, 9, 13], [2, 6, 10, 14], [3, 7, 11, 15], [5, 8, 12, 16]]
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

Billboard image

Create up to 10 Postgres Databases on Neon's free plan.

If you're starting a new project, Neon has got your databases covered. No credit cards. No trials. No getting in your way.

Try Neon for Free →

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay