I'm reading a basic csv file where the columns are separated by commas. However, the body column is a string which may contain commas and quotations.
For example, there are some cells like "Bahamas\", The" and "Germany, West"
I have tried
text = pd.read_table("input.txt", encoding = 'utf-16', quotechar='"', sep = ','),
text = pd.read_table("input.txt", encoding = 'utf-16', quotechar='"', delimiter = ','). But they both cannot work.
Is there a way to go around this problem?