A breakdown of a concept explaining why and how it works.
Master try/except blocks, avoid common pitfalls, and implement proper error handling in your Python applications
Sep 3, 2025
•
6 min read
The GIL isn't a bottleneck anymore - threading is truly going threaded.
Jul 23, 2025
7 min read
This feature, used in Python 3.10+, is an alternative to if/elif/else blocks. See how case and match statements are used.
Jun 4, 2025
5 min read
A beginner-friendly guide to why some variables change behind your back (and others don't)
Feb 12, 2025
Python relies on you to be trustworthy, but there's more to it.
Feb 5, 2025
How catching every exception with ‘except’ in Python can break your code and hide critical errors.
Jan 22, 2025
Dunder methods can change your python game significantly if you know how to leverage them correctly.
Nov 27, 2024
A Beginner’s Guide to Writing Clearer, More Reliable Python Code with Type Hints
Nov 13, 2024
4 min read
Learn when to use = for assignment and == for comparison to avoid common Python mistakes
Nov 6, 2024
See how you can convert Python for loops into list comprehensions in 3 simple steps.
Oct 2, 2024
Practical tips to speed up your Python code and make your loops more efficient.
Sep 25, 2024
9 min read
This is a control flow tool you should've learned yesterday.
Aug 28, 2024
Here's how you're able to use this and why sometimes it's more adventageous
Aug 22, 2024
What is threading? How can we use threading for our applications?
Aug 7, 2024
And here's why you don't need to touch it (for the most part)
May 29, 2024
See how this can affect your Python code during run time.
May 22, 2024
A package highlight
May 1, 2024
A Step-by-Step Approach to Python Decorator Implementation with Examples
Apr 24, 2024
What does the __init__ file do, and why do I need it?
Apr 10, 2024
Writing Cleaner, More Efficient Python Code with the Walrus Operator
Dec 20, 2023
Here's a quick tutorial as to why you should use this versus a try and except block.
Dec 13, 2023
3 min read
It's just like list comprehension, except with a dictionary!
Nov 15, 2023
Safely store sensitive information in this file, like your API keys and tokens.
Nov 8, 2023