Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 341 Bytes

File metadata and controls

9 lines (6 loc) · 341 Bytes

Currying

  • Currying is the process of transforming a function that takes multiple arguments into a series of functions that each take a single argument. In Python, this can be achieved through nested functions.

Examples