如何使用Python中的Enchant模块检查给定单词的拼写
Python有一个名为Enchant的模块,用于检查单词的拼写并提供纠正建议。它还提供了单词的反义词和同义词选项。它还可以检查字典中单词是否存在。
check() 函数在给定单词存在于语言字典中时返回“true”,否则返回“false”。我们还可以使用 check() 函数的这个功能来检查单词的拼写。
在Enchant模块中,我们还可以使用 suggest() 函数来纠正拼写错误的单词。
在本教程中,我们将看到一个示例,以了解在Python中使用Enchant模块来检查给定单词的拼写和纠正拼写的建议的用法。
安装:
要安装Enchant模块,我们可以使用以下命令:
!pip3 install pyenchant
输出:
Collecting pyenchant
Downloading pyenchant-3.2.2-py3-none-win_amd64.whl (11.9 MB)
Installing collected packages: pyenchant
Successfully installed pyenchant-3.2.2
示例:检查单词的拼写并获取更正建议
# First, we will import the required module
import enchant as EC
# Now, we will create dictionary for the language in use (en_US here)
dict1 = EC.Dict("en_US")
# Then, we will create the list of words
words1 = ["Sung", "Cer", "BOOK", "Peaple", "Dronk", "Bat", "Beur", "Plut", "Pot"]
# Here, we will be finding those words that may be misspelled
misspelled1 = []
for word in words1:
if dict1.check(word) == False:
misspelled1.append(word)
print ("The misspelled words in the list are : " + str(misspelled1))
# Now, we will use suggest() function for the correct spelling of the misspelled words
for word in misspelled1:
print ("Suggestion for misspelled" + word + " : " + str(dict1.suggest(word)))
输出:
The misspelled words in the list are : ['Cer', 'Peaple', 'Dronk', 'Beur', 'Plut']
Suggestion for misspelledCer : ['Ce', 'Cr', 'Er', 'Cher', 'Cerf', 'Ser', 'Ter',
'Cor', 'Cdr', 'Der', 'Ger', 'Per', 'Chr', 'Her', 'Yer']
Suggestion for misspelledPeaple : ['Peale', 'People', 'Leaper', 'Plea']
Suggestion for misspelledDronk : ['Cronk', 'Drink', 'Drone', 'Drank', 'Drunk', 'Drongo']
Suggestion for misspelledBeur : ['Bur', 'Beer', 'Bear', 'Blur', 'Eur']
Suggestion for misspelledPlut : ['Pluto', 'Slut', 'Prut', 'Glut', 'Pl ut',
'Pl-ut', 'Plur', 'Put', 'Plus', 'Plat', 'Plot', 'Pout', 'Plug', 'Plum']
结论
在本教程中,我们讨论了如何安装和使用Enchant模块来检查给定单词的拼写,并提供对拼写错误单词的建议。