I'm looking for a way to filter a dataframe on a list of letters. I wish for my output dataframe to be the words from the original dataframe which do not contain any of the letters in the list
For instance
letter_list = ['a','d','o','m','s']
>>>df
ID WORD
1 'yellow'
2 'orange'
3 'green'
4 'blue'
5 'red'
>>> expected output
ID WORD
3 'green'
4 'blue'
I'm not sure how to go about this
Thanks for any help