On 24 December 2011 16:10, Roy Smith <[email protected]> wrote: > In article <[email protected]>, > Roy Smith <[email protected]> wrote: > >> >>> len([x for x in zip(s1, s2) if x[0] != x[1]]) > > Heh, Ian Kelly's version: > >> sum(a == b for a, b in zip(str1, str2)) > > is cleaner than mine. Except that Ian's counts matches and the OP asked > for non-matches, but that's an exercise for the reader :-)
Here's a variation on the same theme: sum(map(str.__ne__, str1, str2)) -- Arnaud -- http://mail.python.org/mailman/listinfo/python-list
