Python | Método TextBlob.correct()

Con la ayuda del método TextBlob.correct() , podemos obtener las palabras corregidas si alguna oración tiene errores ortográficos usando el método TextBlob.correct().

Sintaxis: TextBlob.correct() 
Retorno: Retorna la oración correcta sin errores ortográficos. 
 

Ejemplo #1: 
En este ejemplo, podemos decir que al usar el método TextBlob.correct(), podemos obtener la oración correcta sin errores ortográficos.

Python3

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

Producción:

GFG is a good company and always value their employed. 

Ejemplo #2:

Python3

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

Producción :

I am good at spelling mistake. 

Publicación traducida automáticamente

Artículo escrito por Jitender_1998 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *