09-Python Basic

Functions, Parameters, Arguments, Generator, Iterator

# Topic covered
* Functions
* Built-in Functions
    * Anonymous/lambda Functions
    * map() function
    * reduce() function
    * filter() function
    * eval() function
* User Defined Functions
* Return Statement
* Parameters & Arguments
    * Positional arguments
    * Keyword arguments
    * Default arguments
    * Variable length arguments
* Generators
* Iterable and Iterator in Python
    * Create an Iterator Class
[Read More]