I have a list which contains sublists of three strings:
Example:
data=[
[' 2.131e+02', ' 2.186e+02', '-9.073e+00'],
[' 6.205e+01', ' 6.633e+01', '-1.708e+01'],
['-4.220e-01', '-7.210e-02', '-5.062e-01']
]
Ho can I select a column?
I can select data[0]
which would be the first row, but I am not able to select a column.
I thought the following would select the elements of the first column data[:][0]
but it selects again the first row?