I have two long lists, one with English words,the other with the Spanish translation from google.translate. The order corresponds exactly. e.g. english_list = ['prejudicial','dire','malignant','appalling', 'ratify'] spanish_list =['perjudicial', 'grave', 'maligno', 'atroz','ratificar']
I need to get all the words from the two lists that are more or less similar in terms of the letters
I first through about checking for similar letters at the beginning of the two words, but then realized that in some cases similar words have slightly different beginnings (such as "prejudicial" - "perjudicial")
The desired output is table with two columns under the headings "English" and "Spanish" that have the similar words but excludes those that look different:
English Spanish
prejudicial perjudicial
malignant maligno
ratify ratificar