Ich habe eine Text mit tab-getrennten Einträgen, etwa so:
Code: Alles auswählen
hallo1\thallo2\thallo3
Code: Alles auswählen
hallo1\thallo2\thallo3
Code: Alles auswählen
>>> txt = "hallo1\thallo2\thallo3"
>>> txt.split("\t")
['hallo1', 'hallo2', 'hallo3']