用 textblob 模块,快速处理拼写错误
from textblob import TextBlob
b = TextBlob("I havve goood speling!")
print(b.correct())
#I have good spelling!
本文链接:https://my.lmcjl.com/post/15545.html
展开阅读全文
from textblob import TextBlob
b = TextBlob("I havve goood speling!")
print(b.correct())
#I have good spelling!
本文链接:https://my.lmcjl.com/post/15545.html
4 评论