Am 16.03.16 um 16:09 schrieb Joel Goldstick:
On Wed, Mar 16, 2016 at 10:57 AM, Steven D'Aprano <st...@pearwood.info>
wrote:
py> from operator import mul
py> "abcd12345xyz" | Filter(str.isdigit) | Map(int) | Reduce(mul)
120

This is interesting, but the part I'm missing is the use of the Pipe
symbol '|' in python.  Can you elaborate


It's an overloaded "or" operator

        def __ror__(self, iterable): ....

        
Christian

--
https://mail.python.org/mailman/listinfo/python-list

Reply via email to