当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python TextBlob.correct()用法及代码示例


借助TextBlob.correct()方法,如果有任何句子有拼写错误,我们可以使用TextBlob.correct()方法。

用法: TextBlob.correct()
返回:Return the correct sentence without spelling mistakes.

范例1:
在这个例子中,我们可以说TextBlob.correct()方法,我们就能得到正确的句子而不会出现任何拼写错误。


# import TextBlob 
from textblob import TextBlob 
  
gfg = TextBlob("GFG is a good compny and alays valule ttheir employes.") 
  
# using TextBlob.correct() method 
gfg = gfg.correct() 
  
print(gfg)

输出:

GFG is a good company and always value their employed.

范例2:

# import TextBlob 
from textblob import TextBlob 
  
gfg = TextBlob("I amm goodd at speling mstake.") 
  
# using TextBlob.correct() method 
gfg = gfg.correct() 
  
print(gfg)

输出:

I am good at spelling mistake.



相关用法


注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 Python | TextBlob.correct() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。