I'm trying create a new column in my tab-delimited text file using Python.
Currently each row looks like
"Mk 1:23" \t "text" \n
and I would like to change each of them to
"Mk" \t "1:23" \t "text" \n
I'm trying create a new column in my tab-delimited text file using Python.
Currently each row looks like
"Mk 1:23" \t "text" \n
and I would like to change each of them to
"Mk" \t "1:23" \t "text" \n