I have two lists.
list1 = {115.366, 103.583, 115.24, 91.4648, 93.1291, 485.744, 427.888,489.401, 403.942}
list2 = {114.062, 105.17, 114.857, 91.6497, 93.2112, 398.588, 458.713,410.015, 380.659}
I want these lists to form a table that looks like this.
115.366 114.062
103.583 105.17
115.24 114.857
and so on





Transposeis faster then others.list1 = RandomReal[{-1, 1}, 10^6]; list2 = RandomReal[{-1, 1}, 10^6]; Thread[List[list1, list2]]; // AbsoluteTiming Inner[List, list1, list2, List]; // AbsoluteTiming Transpose[List[list1, list2]]; // AbsoluteTiming– cvgmt Mar 25 '21 at 09:04