I have a text file which is formatted with tabs everywhere. Here is what the text file looks like now:
"item1",
"item2",
"item3",
"item4",
"item5",
"item6",
"item7",
"item8",
....
In fact, the text file should look like this:
"item1", "item2", "item3", "item4", "item5", "item6", "item7", "item8", ....
So, I'm guessing there are extra tabs \t everywhere in the original file.
Is it possible to reformat this list somehow with (let's say) a Python script? How would one do this?