[Solved] Extracting all text before first tab from a list of strings


Your English segments are located in the first column.

All you need to do is

English = [sent.split('\t')[0] for sent in data_examples]

0

solved Extracting all text before first tab from a list of strings