I have the following list of strings :
exclude = ['eee', 'iii']
I have a word to be tested :
word = 'Iîïe'
I want the following test to be true :
if any(x in word for x in exclude):
#I want to be here !
In order to be true, my condition needs to be case-insensitive and accent-insensitive... How?