I have two one dimensional List say A and B. Each of the list has 2000 elements. I want to merge this two list in python to form tow dimensional array e.g.
A=[“Apple”,”Ant”,”Avocado”....]
B=[“Banana”,”Bear”,”Brinjal”,....]
Merge list should be 2000 rows in a way that each row will have two columns. As per above example first row will have “Apple” and “Banana”, second row will be “Ant” and “Bear”.
Tried X = A + B
, however this does not work.