I have an CSV file which looks like this:
104 109 113 111 108 114
95 100 109 103 103 110
Two rows, and every number has its own cell.
How do i read the CSV file per row and add each cell of that row to a list?
The output should look like this:
List_1 = [104, 109, 113, 111, 108, 114]
List_2 = [95, 100, 109, 103, 103, 110]
Also i need the numbers in the list as integer not as a string.