Skip to content

Instantly share code, notes, and snippets.

@dlitvakb
Forked from anonymous/ex_py
Created August 13, 2012 03:28
Show Gist options
  • Save dlitvakb/3336737 to your computer and use it in GitHub Desktop.
Save dlitvakb/3336737 to your computer and use it in GitHub Desktop.
Pruebas
ex_or = 0
while True:
num=raw_input('Ingrese el numero 1: ')
num2=raw_input('Ingrese el segundo numero 2: ')
if len(num) == len(num2):
for indice, letra in enumerate(num):
if letra == num2[indice]:
ex_or += 0
else:
ex_or += 1
break
else:
print"La"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment