Converting CSV into Array in Python

I have a csv file like below. A small csv file and I have uploaded it here I am trying to convert csv values into array. My expectation output like My solution results = [] with open("Solutions10.csv") as csvfile: reader = csv.reader(csvfile, quoting=csv.QUOTE_NONNUMERIC) # change contents to floats for row in reader: # each row… Read More Converting CSV into Array in Python