with open("file.tsv") as fd: rd = csv.reader(fd, delimiter=" ", quotechar='"') for row in rd: print(row)