Skip to content

Commit 0a9ffb9

Browse files
committed
HOF
1 parent 306c046 commit 0a9ffb9

File tree

4 files changed

+55
-33
lines changed

4 files changed

+55
-33
lines changed

02_Day_Variables_builtin_functions/02_variables_builtin_functions.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -234,8 +234,7 @@ print('num_float', float(num_str)) # 10.6
234234

235235
# str to list
236236
first_name = 'Asabeneh'
237-
print(first_name)
238-
print(first_name) # 'Asabeneh'
237+
print(first_name) # 'Asabeneh'
239238
first_name_to_list = list(first_name)
240239
print(first_name_to_list) # ['A', 's', 'a', 'b', 'e', 'n', 'e', 'h']
241240
```

07_Day_Sets/07_sets.md

+12-1
Original file line numberDiff line numberDiff line change
@@ -157,13 +157,24 @@ st = {'item1', 'item2', 'item3', 'item4'}
157157
st.remove('item2')
158158
```
159159

160+
The pop() methods remove a random item from a list and it returns the removed item.
161+
160162
**Example:**
161163

162164
```py
163165
fruits = {'banana', 'orange', 'mango', 'lemon'}
164-
fruits.pop() # removes the last element from the set
166+
fruits.pop() # removes a random item from the set
167+
168+
```
169+
170+
If we are interested in the removed item.
171+
172+
```py
173+
fruits = {'banana', 'orange', 'mango', 'lemon'}
174+
removed_item = fruits.pop()
165175
```
166176

177+
167178
### Clearing Items in a Set
168179

169180
If we want to clear or empty the set we use _clear_ method.

10_Day_Loops/10_loops.md

+4
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,10 @@ for iterator in string:
168168
language = 'Python'
169169
for letter in language:
170170
print(letter)
171+
172+
173+
for i in range(len(language)):
174+
print(language[i])
171175
```
172176

173177
- For loop with tuple

14_Day_Higher_order_functions/14_higher_order_functions.md

+38-30
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<sub>Author:
1111
<a href="https://www.linkedin.com/in/asabeneh/" target="_blank">Asabeneh Yetayeh</a><br>
12-
<small> First Edition: Nov 22 - Dec 22, 2019</small>
12+
<small>Second Edition: July, 2021</small>
1313
</sub>
1414
</div>
1515
</div>
@@ -31,12 +31,15 @@
3131
- [Python - Filter Function](#python---filter-function)
3232
- [Python - Reduce Function](#python---reduce-function)
3333
- [💻 Exercises: Day 14](#-exercises-day-14)
34+
- [Exercises: Level 1](#exercises-level-1)
35+
- [Exercises: Level 2](#exercises-level-2)
36+
- [Exercises: Level 3](#exercises-level-3)
3437

3538
# 📘 Day 14
3639

3740
## Higher Order Functions
3841

39-
In python functions are treated as first class citizens, allowing you to perform the following operations on functions:
42+
In Python functions are treated as first class citizens, allowing you to perform the following operations on functions:
4043

4144
- A function can take one or more functions as parameters
4245
- A function can be returned as a result of another function
@@ -46,17 +49,17 @@ In python functions are treated as first class citizens, allowing you to perform
4649
In this section, we will cover:
4750

4851
1. Handling functions as parameters
49-
2. Returning functions as return value from other functions
50-
3. Using python closures and decorators
52+
2. Returning functions as return value from another functions
53+
3. Using Python closures and decorators
5154

5255
### Function as a Parameter
5356

5457
```py
5558
def sum_numbers(nums): # normal function
5659
return sum(nums) # a sad function abusing the built-in sum function :<
5760

58-
def higher_order_function(f, *args): # function as a parameter
59-
summation = f(*args)
61+
def higher_order_function(f, lst): # function as a parameter
62+
summation = f(lst)
6063
return summation
6164
result = higher_order_function(sum_numbers, [1, 2, 3, 4, 5])
6265
print(result) # 15
@@ -97,14 +100,13 @@ You can see from the above example that the higher order function is returning d
97100

98101
## Python Closures
99102

100-
Python allows a nested function to access the outer scope of the enclosing function. This is is known as a Closure. Let’s have a look at how closures work in Python. In Python, closure is created by nesting a function inside another encapsulating function and then returning the inner function. See the example below.
103+
Python allows a nested function to access the outer scope of the enclosing function. This is is known as a Closure. Let us have a look at how closures work in Python. In Python, closure is created by nesting a function inside another encapsulating function and then returning the inner function. See the example below.
101104

102105
**Example:**
103106

104107
```py
105108
def add_ten():
106109
ten = 10
107-
108110
def add(num):
109111
return num + ten
110112
return add
@@ -137,7 +139,7 @@ def uppercase_decorator(function):
137139
g = uppercase_decorator(greeting)
138140
print(g()) # WELCOME TO PYTHON
139141

140-
## Lets implement the example above with a decorator
142+
## Let us implement the example above with a decorator
141143

142144
'''This decorator function is a higher order function
143145
that takes a function as a parameter'''
@@ -168,6 +170,7 @@ def uppercase_decorator(function):
168170
make_uppercase = func.upper()
169171
return make_uppercase
170172
return wrapper
173+
171174
# Second decorator
172175
def split_string_decorator(function):
173176
def wrapper():
@@ -179,11 +182,9 @@ def split_string_decorator(function):
179182

180183
@split_string_decorator
181184
@uppercase_decorator # order with decorators is important in this case - .upper() function does not work with lists
182-
183185
def greeting():
184186
return 'Welcome to Python'
185187
print(greeting()) # WELCOME TO PYTHON
186-
187188
```
188189

189190
### Accepting Parameters in Decorator Functions
@@ -251,7 +252,7 @@ def change_to_upper(name):
251252
names_upper_cased = map(change_to_upper, names)
252253
print(list(names_upper_cased)) # ['ASABENEH', 'LIDIYA', 'ERMIAS', 'ABRAHAM']
253254

254-
# Lets apply it with a lambda function
255+
# Let us apply it with a lambda function
255256
names_upper_cased = map(lambda name: name.upper(), names)
256257
print(list(names_upper_cased)) # ['ASABENEH', 'LIDIYA', 'ERMIAS', 'ABRAHAM']
257258
```
@@ -310,7 +311,7 @@ print(list(long_names)) # ['Asabeneh']
310311

311312
### Python - Reduce Function
312313

313-
The _reduce()_ function is defined in the functools module and we should import it from this module. Like map and filter it takes two parameters, a function and an iterable. However, it doesn't return another iterable, instead it returns a single value.
314+
The _reduce()_ function is defined in the functools module and we should import it from this module. Like map and filter it takes two parameters, a function and an iterable. However, it does not return another iterable, instead it returns a single value.
314315
**Example:1**
315316

316317
```py
@@ -330,29 +331,36 @@ names = ['Asabeneh', 'Lidiya', 'Ermias', 'Abraham']
330331
numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
331332
```
332333

334+
### Exercises: Level 1
335+
333336
1. Explain the difference between map, filter, and reduce.
334337
2. Explain the difference between higher order function, closure and decorator
335338
3. Define a call function before map, filter or reduce, see examples.
336339
4. Use for loop to print each country in the countries list.
337340
5. Use for to print each name in the names list.
338341
6. Use for to print each number in the numbers list.
339-
7. Use map to create a new list by changing each country to uppercase in the countries list
340-
8. Use map to create a new list by changing each number to its square in the numbers list
341-
9. Use map to change each name to uppercase in the names list
342-
10. Use filter to filter out countries containing 'land'.
343-
11. Use filter to filter out countries having exactly six characters.
344-
12. Use filter to filter out countries containing six letters and more in the country list.
345-
13. Use filter to filter out countries starting with an 'E'
346-
14. Chain two or more list iterators (eg. arr.map(callback).filter(callback).reduce(callback))
347-
15. Declare a function called get_string_lists which takes a list as a parameter and then returns a list containing only string items.
348-
16. Use reduce to sum all the numbers in the numbers list.
349-
17. Use reduce to concatenate all the countries and to produce this sentence: Estonia, Finland, Sweden, Denmark, Norway, and Iceland are north European countries
350-
18. Declare a function called categorize_countries that returns a list of countries with some common pattern (you can find the [countries list](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/data/countries.py) in this repository as countries.js(eg 'land', 'ia', 'island', 'stan')).
351-
19. Create a function returning a dictionary, where keys stand for starting letters of countries and values are the number of country names starting with that letter.
352-
20. Declare a get_first_ten_countries function - it returns a list of first ten countries from the countries.js list in the data folder.
353-
21. Declare a get_last_ten_countries function that returns the last ten countries in the countries list.
354-
355-
23. Use the countries_data.py (https://github.com/Asabeneh/30-Days-Of-Python/blob/master/data/countries-data.py) file and follow the tasks below:
342+
343+
### Exercises: Level 2
344+
345+
1. Use map to create a new list by changing each country to uppercase in the countries list
346+
1. Use map to create a new list by changing each number to its square in the numbers list
347+
1. Use map to change each name to uppercase in the names list
348+
1. Use filter to filter out countries containing 'land'.
349+
1. Use filter to filter out countries having exactly six characters.
350+
1. Use filter to filter out countries containing six letters and more in the country list.
351+
1. Use filter to filter out countries starting with an 'E'
352+
1. Chain two or more list iterators (eg. arr.map(callback).filter(callback).reduce(callback))
353+
1. Declare a function called get_string_lists which takes a list as a parameter and then returns a list containing only string items.
354+
1. Use reduce to sum all the numbers in the numbers list.
355+
1. Use reduce to concatenate all the countries and to produce this sentence: Estonia, Finland, Sweden, Denmark, Norway, and Iceland are north European countries
356+
1. Declare a function called categorize_countries that returns a list of countries with some common pattern (you can find the [countries list](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/data/countries.py) in this repository as countries.js(eg 'land', 'ia', 'island', 'stan')).
357+
1. Create a function returning a dictionary, where keys stand for starting letters of countries and values are the number of country names starting with that letter.
358+
2. Declare a get_first_ten_countries function - it returns a list of first ten countries from the countries.js list in the data folder.
359+
1. Declare a get_last_ten_countries function that returns the last ten countries in the countries list.
360+
361+
### Exercises: Level 3
362+
363+
1. Use the countries_data.py (https://github.com/Asabeneh/30-Days-Of-Python/blob/master/data/countries-data.py) file and follow the tasks below:
356364
- Sort countries by name, by capital, by population
357365
- Sort out the ten most spoken languages by location.
358366
- Sort out the ten most populated countries.

0 commit comments

Comments
 (0)