hi, Is "all" inbuilt function in python? what it does?
> from itertools import ifilter, count
>
> def anagram_finder():
> primes = ifilter(lambda p: all(p % k for k in xrange(2, p)), count(2))
^^^^
> primeAlpha = dict(zip(string.lowercase, primes))
> ...
--
sandip
--
http://mail.python.org/mailman/listinfo/python-list
