python处理英文拼写错位

用 textblob 模块,快速处理拼写错误

from textblob import TextBlob
b = TextBlob("I havve goood speling!")
print(b.correct())
#I have good spelling!

猜你喜欢

转载自blog.csdn.net/weixin_45631815/article/details/108969145