En este artículo, aprenderemos cómo censurar malas palabras usando Python. Para esto, estamos usando el módulo better_profanity de python.
Instalación
pip install better_profanity
Para censurar malas palabras, estamos usando el método profanity.censor() de better_profanity Entonces, discutimos primero su sintaxis y argumentos.
Sintaxis: blasfemia.censor(texto, censor_char=’*’)
Parámetros:
texto : texto para ser censurado
censor_char: ‘*’ por defecto, carácter para censurar malas palabras
Valor de retorno: texto censurado
Acercarse:
- Paquete de importación (blasfemias)
- Declarar o ingresar el texto a censurar.
- Use el método profanity.censor() y obtenga el texto censurado.
- Imprimir texto censurado.
Ejemplo 1:
Python3
# importing package from better_profanity import profanity # text to be censored text = "What the shit are you doing?" # do censoring censored = profanity.censor(text) # view output print(censored)
Producción:
What the **** are you doing?
Ejemplo 2:
Python3
# importing package from better_profanity import profanity # text to be censored text = "What the shit are you doing?" # do censoring censored = profanity.censor(text, '$') # view output print(censored)
Producción:
What the $$$$ are you doing?
Publicación traducida automáticamente
Artículo escrito por deepanshu_rustagi y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA