python
from funcy import rcompose, partial
def add_two(num):
return num + 2
def multiply_by_three(num):
return num * 3
combined_function = rcompose(add_two, multiply_by_three)
python
from funcy import filter, mapcat
numbers = [1, 2, 3, 4, 5]
python
from funcy import partial
def add(x, y):
return x + y
add_two = partial(add, 2)
print(result)
python
from funcy import walk, flatten
tree = ['A', ['B', 'C', ['D', 'E']], 'F']