I need dynamic code:
if the file data looks like below, then how can I add each column of it in 3 list separately in python 3.4.1?
0 4 5
1 0 0
1 56 96
I tried and read the data from file and stored it in a list like: scores = [['0','4', '5'],['1','0','0], ['1', '56','96']]
. but now I don't know how write the code to put each first letter of this array to 3 separate lists or arrays. like: list1 = [0, 1,1]
, list2 = [4,0,56]
and list3 = [5,0,96]
thanks