Skip to content

Commit

Permalink
letras-a-numeros
Browse files Browse the repository at this point in the history
  • Loading branch information
RockoDev committed Jun 1, 2012
1 parent d87a19e commit 7b5ed2c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions letras-a-numeros.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
resultado = resultado.replace(valor[0],valor[1])
return resultado

print('Resultado: %s' % convertidor(input('Ingresa el texto:\n')))

while(input('¿Deseas ingresar otro texto? (Si: 1/ No: 0): ') == '1'):
print('Resultado: %s' % convertidor(input('Ingresa el texto:\n')))
texto = input('Ingresa el texto:\n')
while(texto != ''):
print('Resultado: %s' % convertidor(texto))
texto = input('Ingresa otro texto:\n')

0 comments on commit 7b5ed2c

Please sign in to comment.