You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
40
43
41
44
- A function can take one or more functions as parameters
42
45
- 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
46
49
In this section, we will cover:
47
50
48
51
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
51
54
52
55
### Function as a Parameter
53
56
54
57
```py
55
58
defsum_numbers(nums): # normal function
56
59
returnsum(nums) # a sad function abusing the built-in sum function :<
57
60
58
-
defhigher_order_function(f, *args): # function as a parameter
59
-
summation = f(*args)
61
+
defhigher_order_function(f, lst): # function as a parameter
62
+
summation = f(lst)
60
63
return summation
61
64
result = higher_order_function(sum_numbers, [1, 2, 3, 4, 5])
62
65
print(result) # 15
@@ -97,14 +100,13 @@ You can see from the above example that the higher order function is returning d
97
100
98
101
## Python Closures
99
102
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.
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.
1. Explain the difference between map, filter, and reduce.
334
337
2. Explain the difference between higher order function, closure and decorator
335
338
3. Define a call function before map, filter or reduce, see examples.
336
339
4. Use for loop to print each country in the countries list.
337
340
5. Use for to print each name in the names list.
338
341
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:
356
364
- Sort countries by name, by capital, by population
357
365
- Sort out the ten most spoken languages by location.
0 commit comments