7 lines
89 B
Python
7 lines
89 B
Python
import enchant
|
|
|
|
locale = 'en_US'
|
|
|
|
dict = enchant.Dict(locale)
|
|
|
|
print(dict.check("Hello")) |