Laura Vásquez-Rodríguez
Results
1
comments of
Laura Vásquez-Rodríguez
Regarding the previous post, this worked for me: `zip(*[(i[0], i[1]) for i in zip(comp_txt, simp_txt) if i[0] != i[1]])` And for preprocessing data: `data_comp = open(comp, "r", encoding="utf-8").read().splitlines()` `data_simp =...