Advertisement
Guest User

Untitled

a guest
Jun 24th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. switch = str(raw_input("Desea utilizar la aplicacion Y/N: "))
  2. while(switch == "Y" or switch == "y"):
  3. rut = str(raw_input("Ingrese el rut: "))
  4. dv = str(raw_input("Ingrese el digito verificador: "))
  5. r_dv = rut+dv
  6. print(valida(r_dv))
  7. switch = str(raw_input("Desea volver a utilizar la aplicacion Y/N: "))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement