Loic <[EMAIL PROTECTED]> writes: > I want to design a function to compare lists and return True only if > both lists are equal considering memory location of the list. > I suppose it would be the equivalent of comparing 2 pointers in c++
Use the "is" keyword. print (l1 is l2) print (l0 is l2) -- http://mail.python.org/mailman/listinfo/python-list