Javatpoint Logo
Javatpoint Logo

Currying in Python

In this tutorial, we will learn about currying in Python, which is a new concept in Python. Most of the developers won't be familiar with this topic. We will explain the concept of currying, its use cases, and how to implement it in Python. Let's have an introduction to currying in Python.

What is Currying?

In mathematical and computer science, currying is breaking down a function that takes multiple arguments into a single argument function. Here, let's us make it clear. The term "curry" comes from the name of the mathematician Haskell Curry, not a spicy Dish.

Currying is transforming a function with multiple arguments into a sequence of single-argument functions. We can say that converting a function f(a, b, c, …..) into a function like this f(a)(b)(c)……

Currying is also used in theoretical computer science because it is often easier to transform multiple argument models into single argument models.

Composition of Functions

We define the composition h of two function f and g.

So it will define the same as we define the decorators in Python; the inner function's output becomes the outer function's input.

We will use this function in the upcoming example. Now let's understand another example.

Suppose we have a thermometer which is not working accurately. The correct temperature can be calculated by using the function temp_correction function. We convert our temperature value from Celsius to Fahrenheit. We can do this by applying to compose to both functions.

Example -

Output:

44.5 50.0

The composition of two functions is generally not commutative, i.e. compose (celsius2fahrenheit, readjust) is different from compose(readjust, celsius2fahrenheit)

Output:

47.3 50.0

The Convert2 is not a solution to our problem because it does not readjusting the actual temperatures of our thermometer but the transformed Fahrenheit values.

Mathematical Representation of Currying

f(x, y) = (x*x*x) + (y*y*y)

h(x) = (x*x*x)

h(y) = (y*y*y)

h(x)(y) = h(x)+h(y)

f(x, y) = h(x)(y)

Curry f = h(x)(y)

It will take the chaining the composition of the function as below.

Example - 1: a(x) = b(c(d(x)))

Example - 2: v(a, b, c, d, e) = w(x(y(z(a, b, c, d, e))))

Output:

20 30 50 60

It will be complex when there is huge chaining of the function. There by simplifying one huge block of manipulation to similar sequence blocks. Let's understand the following example.

Example -

Output:

524934.3832020997

In the next example, we will transform time and define the chaining of the functions.

Example - 2:

Output:

1728000

Currying Function with an Arbitrary Number of Arguments

Here is the question arise, how a curry a function across an arbitrary and unknown numbers of parameters?

We can use the nested function to "curry" the arguments. We need a way to tell the function calculate and return the value. The functions that are called with the arguments will be curried. If we call the function without arguments it will tell the Python function that we finally want to the result.

Let's understand the following example.

Example -

Output:

5.571428571428571
4.333333333333333
4.333333333333333

Let's print some important arguments that will help us to understand in better way.

Example -

Output:

Calling curried function with:
args:  (2,) kwargs:  {}
Currying the values:
f_args:  [2]
f_kwargs: {}
Calling curried function with:
args:  (5,) kwargs:  {}
Currying the values:
f_args:  [2, 5]
f_kwargs: {}
Calling curried function with:
args:  (9,) kwargs:  {}
Currying the values:
f_args:  [2, 5, 9]
f_kwargs: {}
Calling curried function with:
args:  (4, 5) kwargs:  {}
Currying the values:
f_args:  [2, 5, 9, 4, 5]
f_kwargs: {}
Calling curried function with:
args:  (5, 9) kwargs:  {}
Currying the values:
f_args:  [2, 5, 9, 4, 5, 5, 9]
f_kwargs: {}
Calling mean_val with:
[2, 5, 9, 4, 5, 5, 9] {}
5.571428571428571

Conclusion

Currying can be helpful in many situations, but it is important to note its limitation.







Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA