I have a following type of csv
a,b,c
1,2,3
4,5,6
7,8,9
I would like to parse every column of this csv file into a list with out columns so the end result would be
myList = ["1","4","7","2","5","8","3","6","9"]
I have found many solutions for one column but i need to be flexible to be able to read every column of the file. I'm using an older version of python so i can't use any solutions with pandas library.