當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。