Skip to content

Instantly share code, notes, and snippets.

Created August 13, 2012 03:24
Show Gist options
  • Save anonymous/3336707 to your computer and use it in GitHub Desktop.
Save anonymous/3336707 to your computer and use it in GitHub Desktop.
Pruebas
while b==1:
num=raw_input('Ingrese el numero 1: ')
num2=raw_input('Ingrese el segundo numero 2: ')
n=len(num)
n2=len(num2)
if n==n2:
for y in range (n):
for k in num:
for m in range (n):
t=datos[m][0]
if k==m:
temp1=datos[m][1]
break
for u in num2:
for m in range (n):
t=datos[m][0]
if k==m:
temp2=datos[m][1]
break
for d in range (n):
a1=temp1[d]
a2=temp2[d]
if a1==a2:
ex_or+=0
else:
ex_or+=1
b=2
else:
print"La"
b=1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment