Skip to content

Instantly share code, notes, and snippets.

@Ahmed-Fawzy
Created April 30, 2014 23:21
Show Gist options
  • Save Ahmed-Fawzy/28b9a22af9760d3eac53 to your computer and use it in GitHub Desktop.
Save Ahmed-Fawzy/28b9a22af9760d3eac53 to your computer and use it in GitHub Desktop.
#!/usr/bin/python
aaa = ['4','2','5']
bbb = ['4','2','5']
for i in range(len(aaa)):
if aaa[i] == bbb[i] :
print "matched"
else:
print "unmatched"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment