Tags
Language
Tags
May 2024
Su Mo Tu We Th Fr Sa
28 29 30 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 1

Talk Python - Python Inner Functions

Posted By: ELK1nG
Talk Python - Python Inner Functions

Talk Python - Python Inner Functions
MP4 | Video: h264, 1920x1080 | Audio: AAC, 44.1 KHz, 2 Ch
Genre: eLearning | Language: English | Duration: 6 Lessons (37m) | Size: 66.8 MB

Python allows the declaration of functions inside of other functions. Inner functions, also known as nested functions, are defined within a function. This type of function has direct access to variables and names defined in the enclosing function in Python. Inner functions have many uses, most notably as closure factories and decorator functions.


In this course, you’ll learn how to:

Define inner functions
Use inner functions as helper functions
Build function closures
Use captured variables in a closure
Use captured data functions in a closure
Work with decorators