Python Decorators

DecoratorsWHAT?A decorator in Python is a special kind of function that adds extra functionality to another function, without changing the original function’s code.WHY?To add some functionality befo...
0 Read More

args and kwargs in Python

ARGSCollects extra positional arguments as a tupleKWARGSCollects extra named arguments as a dictionaryBasic example for args ⛶def add_all(*args): return sum(args) print(add_all(1, 2, 3)) ...
0 Read More

Introductory Collections in Python

Introductory Collections in Python
This document aims to explain, in a simple and straightforward way, the main types of collections in Python: Lists, Tuples, Sets, and Dictionaries. If you've never programmed before, don't worry!1. Li...
0 Read More

Python Cheatsheet

Python Cheatsheet
This Python cheatsheet is designed to be your quick reference guide for Python programming. Whether you’re a beginner learning the basics or an experienced developer looking for a handy resource, th...
0 Read More