Advanced Foundations of Python Programming
Digging Into The Advanced Foundations of Python Programming - Become An Advanced Python Developer - Hands-On Training
What you will learn:
Advanced Collections: Named Tuples, Default Dictionary, Counters, Ordered Dictionary, Queues and DequesAdvanced Functions: Zipping, Unzipping, Evaluating expressions, Memory view, Mapping objects with lambda, Enumerating objects and Executing Python expressions
The *args and **kwargs to pass variable number of args
Iterators and Iterables in Python: Iterate over sequences using different techniques and tricks. Building Iterators using FP and OOP
Generator functions with many yield statements and Generator expressions
Metaclass: Built-in metaclasses and building custom metaclass
Decorators: Functional Programming, Regular way to decorate a function, and the best way using @
Comprehensions: List comprehension, Dict comprehension, Set comprehension and Tuple comprehension
Building Logger to indicate the problems
Creating custom Calendar with different ways