top of page


Python Practice Set (Part 19): Decorators and Generators
Decorators: A way to add new functionality to an existing function without modifying its source code.
Generators: A special type of function that allows you to work with large sequences of data without storing them all in memory at once.
Anubhav Somani
Sep 32 min read


Python Practice Set (Part 15): Pythonic Programming
This practice set focuses on four powerful tools that help you write more Pythonic code: List Comprehensions, Lambda Functions, map, and filter. These will allow you to perform complex operations on data with incredibly concise and elegant syntax.
Anubhav Somani
Sep 32 min read
bottom of page