Now that you know the basics of how the reduce()
function works, you’re going to look into some of the interesting ways in which you can use this building block of functional programming. You’ll see how the reduce()
function allows you to group your data set into arbitrary categories.
You’ll also learn about Python’s defaultdict
class, which is defined in the collections
module. Next, you’ll familiarize yourself with some useful helpers in the itertools
module, such as itertools.groupby
.
senatoduro8 on July 24, 2019
Dan, What is the difference between functional and procedural programming?