I am using python, I have a list which contains inside it group of lists how can I convert it into one matrix?
for example,
Root_List = [list1 list2 list3]
list1 = [1 2 3]
list2 = [1 5 9]
list3 = [2 4 1]
I need matrix to have below value
[
1 2 3
1 5 9
2 4 1
]
Any idea? Thank you in advanced.