Am 16.03.16 um 16:09 schrieb Joel Goldstick:
On Wed, Mar 16, 2016 at 10:57 AM, Steven D'Aprano <[email protected]> wrote:py> from operator import mul py> "abcd12345xyz" | Filter(str.isdigit) | Map(int) | Reduce(mul) 120This is interesting, but the part I'm missing is the use of the Pipesymbol '|' in python. Can you elaborate
It's an overloaded "or" operator
def __ror__(self, iterable): ....
Christian
--
https://mail.python.org/mailman/listinfo/python-list
