Python Documentation

~ Ex.:

from functools import partial
 
def sum(x, y):
    return x + y
 
sum_3_to = partial(sum, x = 2)
 
assert sum_3_to(1) == 4