998b6cc
1
2
3
4
5
6
7
def outer_func(x): def inner_func(y): return x + y return inner_func add_5 = outer_func(5) print(add_5(10))