Learn Python From Scratch: We Extended Our Newbie Bite Exercises From 25 to 50 🐍 πŸ“ˆ

We are excited to announce that we’ve extended our Newbie Bites from 25 to 50 Python exercises! πŸŽ‰ The importance of exercising when learning how to code πŸ’‘ We’re passionate about this new batch of exercises because they require active engagement, which is crucial for learning how to code. Passive methods like reading books or… Continue reading Learn Python From Scratch: We Extended Our Newbie Bite Exercises From 25 to 50 🐍 πŸ“ˆ

⚠️Why you should avoid import * in Python 🐍

Anyone who’s worked with Python knows that modules can be a Godsend, saving you time, effort, and many lines of code. They even have namespacing built-in πŸ’ͺ 😍 To expand on this a bit: However, not all ways of using modules are equally beneficial. In this article, we will discuss why using import * can… Continue reading ⚠️Why you should avoid import * in Python 🐍

How to Use Pdb to Debug Your Code

The larger part of our coding time is spent reading and debugging code already written. For this Python’s pdb is an unmissable module in your Python toolbox. In this article I show you the most common options and some practical examples.