How to convert a column to a non-nested list while the column elements are list?
For example, the column is like
column [1, 2, 3] [1, 2]
Another solution that will work is the list.extend() method.
list.extend()
list = [] for row in column: list.extend(row)