python from fn import _ as F numbers = [1, 2, 3, 4, 5] result = F(numbers).map(lambda x: x * 2).filter(lambda x: x > 5).reduce(lambda x, y: x + y) pip install fn.py