Complete-Python-3-Bootcamp: Pierian-Data
Complete-Python-3-Bootcamp: Pierian-Data
Pierian-Data added image link to all notebooks c6d506f · 4 years ago History
map function
The map function allows you to "map" a function to an iterable object. That is to say you can quickly call the same function to every item
in an iterable, such as a list. For example:
In [1]:
def square(num):
return num**2
In [2]:
my_nums = [1,2,3,4,5]
In [5]:
map(square,my_nums)
In [7]:
# To get the results, either iterate through map()
# or just cast to a list
list(map(square,my_nums))
In [8]:
def splicer(mystring):
if len(mystring) % 2 == 0:
return 'even'
else:
return mystring[0]
In [9]:
mynames = ['John','Cindy','Sarah','Kelly','Mike']
In [10]:
list(map(splicer,mynames))
filter function
The filter function returns an iterator yielding those items of iterable for which function(item) is true. Meaning you need to filter by a
function that returns either True or False. Then passing that into filter (along with your iterable) and you will get back only the results that
would return True when passed to the function.
In [12]:
def check_even(num):
return num % 2 == 0
In [13]:
nums = [0,1,2,3,4,5,6,7,8,9,10]
[ ]
https://github.com/Pierian-Data/Complete-Python-3-Bootcamp/blob/master/03-Methods and Functions/05-Lambda-Expressions-Map-and-Filter.ipynb 3/7
7/11/24, 1:18 PM Complete-Python-3-Bootcamp/03-Methods and Functions/05-Lambda-Expressions-Map-and-Filter.ipynb at master · Pierian-Data/Complete-Python-3-Bootcamp · GitHub
In [15]:
filter(check_even,nums)
In [16]:
list(filter(check_even,nums))
lambda expression
One of Pythons most useful (and for beginners, confusing) tools is the lambda expression. lambda expressions allow us to create
"anonymous" functions. This basically means we can quickly make ad-hoc functions without needing to properly define a function using
def.
Function objects returned by running lambda expressions work exactly the same as those created and assigned by defs. There is key
difference that makes lambda useful in specialized roles:
The lambda's body is similar to what we would put in a def body's return statement. We simply type the result as an expression
instead of explicitly returning it. Because it is limited to an expression, a lambda is less general that a def. We can only squeeze
design, to limit program nesting. lambda is designed for coding simple functions, and def handles the larger tasks.
In [17]:
def square(num):
result = num**2
return result
In [18]:
square(2)
Out[18]: 4
In [19]:
def square(num):
return num**2
In [20]:
square(2)
Out[20]: 4
In [21]:
def square(num): return num**2
In [22]:
square(2)
Out[22]: 4
This is the form a function that a lambda expression intends to replicate. A lambda expression can then be written as:
In [23]:
lambda num: num ** 2
In [25]:
# You wouldn't usually assign a name to a lambda expression, this is just for demonstration!
square = lambda num: num **2
In [26]:
square(2)
Out[26]: 4
So why would use this? Many function calls need a function passed in, such as map and filter. Often you only need to use the function
you are passing in once, so instead of formally defining it, you just use the lambda expression. Let's repeat some of the examples from
above with a lambda expression
In [29]:
list(map(lambda num: num ** 2, my_nums))
In [30]:
list(filter(lambda n: n % 2 == 0,nums))
Here are a few more examples, keep in mind the more comples a function is, the harder it is to translate into a lambda expression,
meaning sometimes its just easier (and often the only way) to create the def keyword function.
In [31]:
lambda s: s[0]
In [32]:
lambda s: s[::-1]
You can even pass in multiple arguments into a lambda expression. Again, keep in mind that not every function can be translated into a
lambda expression.
In [34]:
lambda x,y : x + y
You will find yourself using lambda expressions often with certain non-built-in libraries, for example the pandas library for data analysis
works very well with lambda expressions.