Hi
I wish to add a column of data to a file.
The file currently has three tab delimited columns.
abbd 1234 0.987
affr 2345 0.465
I have a list of length 8,800 comprising floats.
li = [-1.0099876, 34.87659]
I wish to add this list as a fourth column to the file.
abbd 1234 0.987 -1.0099876
Note - my file is open in r+ mode.
Thanks, S :-)