Módulo Python text2digits

Un módulo text2digits es esa biblioteca de python que lo ayuda a convertir números de texto en dígitos que están presentes en una string. Puede encontrar esto útil en las operaciones de Alexa/Lex para convertir audio en texto y tiene que convertir el texto en dígitos.

Instalación de la biblioteca

Este módulo no viene integrado con Python. Necesitas instalarlo externamente. Para instalar este módulo, escriba el siguiente comando en la terminal.

pip install text2digits

Ejemplo :

# Importing text2digits function  
  
# From text2digits Library  
  
from text2digits import text2digits
  
# we have to create a object of this function
  
a = text2digits.Text2Digits()
  
from text2digits import text2digits
a = text2digits.Text2Digits()
  
ans = a.convert("twenty ten and thirty six")
print(ans)
  
ans = a.convert("I was born in nineteen ninety nine")
print(ans)
  
ans = a.convert("I am twenty ")
print(ans)
  
ans = a.convert("one thousand and six hundred and sixty six")
print(ans)
  
ans = a.convert("I was born in nineteen eighty eight and am  thirty two years old !")
print(ans)
  
ans = a.convert("sixty billion forty million twenty thousand four hundred six")
print(ans)
  
ans = a.convert("I am thirty six years old with a child who is four.")
print(ans)
  
ans = a.convert("one is not divisible by zero")
print(ans)
  
ans = a.convert("Sixteen and seven" )
print(ans)
  
ans = a.convert("one two three four five six seven eight nine")
print(ans)
type(ans)

Producción :

2010 and 36
I was born in 19 ninetynine
I am 20 
1666
I was born in 1988 and am  32 years old !
60040020406
I am 36 years old with a child who is 4.
1 is not divisible by 0
16 and 7
123456789
str

Nota: text2digits siempre toma una string como entrada; de lo contrario, generará un SyntaxError .

Publicación traducida automáticamente

Artículo escrito por vasu_gupta 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 *