Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
Advanced Foundations of Python Programming
Rating: 4.5 out of 5(595 ratings)
130,867 students

Advanced Foundations of Python Programming

Digging Into The Advanced Foundations of Python Programming - Become An Advanced Python Developer - Hands-On Training
Last updated 6/2023
English
English [Auto],

What you'll learn

  • Advanced Collections: Named Tuples, Default Dictionary, Counters, Ordered Dictionary, Queues and Deques
  • Advanced 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

Course content

11 sections58 lectures3h 57m total length
  • Introduction to Training6:35

    Master the advanced foundations of Python programming, including named tuples, default dictionaries, queues and deques, iterators, generators, and decorators, with practical real-world examples.

  • Python Named Tuples overview1:42

    Explore named tuples in Python, a lightweight container that lets you assign names to tuple positions by importing from collections and using a type name and field names.

  • Python Named Tuples 14:05

    Import namedtuple from the collections module and define a point2D with fields x and y, then instantiate it with x=50 and y=100 to compare to a regular tuple. Use isinstance to confirm the type, and perform slicing, indexing, and pecking operations on the named tuple.

  • Python Named Tuples 23:56

    Explore Python named tuples by unpacking points, formatting with placeholders, indexing, iterating, and using rename to create valid field names and access fields via _fields.

  • The DefaultDict in Python 11:44

    Explore how the default dict from the collections module, a subclass of the dictionary class, supplies default values for absent keys in Python, and how the default factory works.

  • The DefaultDict in Python 25:54

    import defaultdict from collections and use a default dict to auto-assign values using a default factory for missing keys, such as zero or an empty set or list.

  • Building Counters overview1:34

    Explore counters in Python, learn how Counter from collections counts items in iterables, and see practical syntax by calling Counter(iterable) to tally elements in lists, tuples, dictionaries.

  • Building Counters 16:40

    Import the Counter from the collections module and build a Counter from a list, a string, or a dictionary to count item frequencies. Print the results.

  • Building Counters 24:11

    Learn to use Python's Counter to count items from tuples and strings, update counts with iterables, delete items by key, and understand that Counter is a dict subclass.

  • The OrderedDict in Python 11:09

    Learn how OrderedDict preserves insertion order in Python by using OrderedDict from the collections module, unlike regular dictionaries, to track item order when iterating.

  • The OrderedDict in Python 23:35

    Import OrderedDict from collections and create an empty ordered dictionary; convert a normal dictionary to an OrderedDict and print its items to see the preserved order.

  • The OrderedDict in Python 35:17

    Explore manipulating an ordered dictionary in Python 3 by adding, updating, and deleting items in a sample order; move items to ends and iterate in reverse.

  • Queues in Python4:05

    Discover how to use Python's queue library to implement a first in, first out queue, creating it with from queue import queue and using put and get.

  • Deques in Python3:36

    Learn how to use Python's deque from the collections module to create a queue, append items, pop from the left, and clear the container.

Requirements

  • Python Basics such as Variables, Data Types, Data Structures, Control Flow, Loops, Functions and Classes
  • The Jupyter Notebook or any working environment for Python

Description

Hello and welcome to the Advanced Foundations of Python Programming | 2023 Training Masterclass.

Learn the Advanced foundations of modern python programming with this powerful, deep, direct to the point and interactive training.

For each concept in this course, you'll master the theory then you'll  practice with many real examples.

Do you want to Advance your Python development career?

Do you want to be able to create real programs using the advanced concepts of Python?

This effective training course is created for you to help you master the most important advanced concepts in python programming language, and it will save your valuable time.

By the end of this course you'll learn:

  • Advanced Collections: Named Tuples, Default Dictionary, Counters, Ordered Dictionary, Queues and Deques.

  • Advanced 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.


    This advanced training course is full of examples to clarify each concept in detail.

    You'll master all that and more, and if you encounter any problems during this course, you'll get the QA Instructor support as soon as possible.

Learn, understand, practice and master the advanced foundations of the python programming language like python experts .

So, what are you waiting for, enroll now to go through this advanced and deep Training of the most popular Programming Language on the market, Python.

Become An Advanced Python Guru in no time!

Let’s get started!

Who this course is for:

  • Python Beginners who know the Python basics
  • Intermediate Python developer
  • Anyone who wants to master the advanced foundations of Python in no time
  • Python developer who wants to advance his dev career
  • Python Developers from all levels who know the Python basics and curious about advanced concepts