Hi,
This is my first time writing to a python list, so sorry if this message is
misdirected.
Recently I wrote something like:
functools.reduce(lambda x, y: x and y, ...)
and I was wondering why there is no logical and in the operator module.
(http://docs.python.org/3.3/library/operator.html)
Is there a reason for its not being there?
Thanks.