I'm trying to read an Arabic and English data set Dataset, i need to separate the sentences (Arabic) in one list and the labels (English) in another array. I'm trying to read the .txt file as csv file to append each column in a single array , i try the following code but it gave me errors.
import pandas as pd
X = pd.read_csv('trans.arff.txt',encoding='utf-8')
Any ideas or solutions, Pleas!