Is there any way I can use multiple dictionary in enchant. This is what I do,
import enchant
d = enchant.Dict("en_US")
d.check("materialise")
>> False
But if I use enchant.Dict("en_UK")
, I will get True
. What is the best way to combine multiple dictionaries, so that it will return True
no matter materialise
or materialize
as the input argument?