Hrvoje Niksic <hnik...@xemacs.org> writes:
> I guess you meant map(a, str.upper) == map(b, str.upper)?  a and b are
> lists of strings.

Oh, sorry.  Yes, either 

    map(str.upper, a) == map(str.upper, b)

or

    all(str.upper(x)==str.upper(y) for x,y in zip(a,b))
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to