I have a .text file with following format, where fields (index number, name and message) are separated by \\t (tab-separated):
.text
\\t
712 ben
I think you need add parameter quoting:
quoting
import csv chat = pd.read_csv("f.text",sep = "\t", header = None, usecols = [2], quoting=csv.QUOTE_NONE)