Python

Python Menu

Partial functions allow one to derive a function with x parameters to a function with fewer parameters and fixed values set for the more limited function.

The default values will start replacing variables from the left. The 2 will replace x. y will equal 4 when dbl(4) is called. It does not make a difference in this example, but it does in the example below.

from functools import partial
def multiply(x,y): return x * y
# create a new function that multiplies by 2 dbl = partial(multiply,2) print(dbl(4))

Exercise

Edit the function provided by calling partial() and replacing the first three variables in func(). Then print with the new partial function using only one input variable so that the output equals 60.

# Following is the exercise, function provided: from functools import partial def func(u,v,w,x): return u*4 + v*3 + w*2 + x # Enter your code here to create and print with your partial function
from functools import partial def func(u,v,w,x): return u*4 + v*3 + w*2 + x
p = partial(func,5,6,7) print(p(8))
test_output_contains("60") success_msg("Excellent!")

Introduction

Python Basics

Python Advance

Data Science Python Tutorials

Python Functions and Methods