I have multiple lists as follows:- (I am using Python)
l1 = [mo 275 336]
l2 = [m1 334 776]
I need to change it into column format as belows:-
m0 275 336
m1 334 776
I have tried a lot of things but it's not coming up. How do I approach this?