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 π π
Articles on modules
β οΈWhy you should avoid import * in Python π
By Bob Belderbos on 15 August 2023
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 π
Bootstrap Your Next Python Project With Cookiecutter
By Bob Belderbos on 24 October 2017
I finally did it! I bootstrapped my first project with Cookiecutter. There is a lot to discover but wow this tool can save you a ton of time, making your project more professional.
How to Use Pdb to Debug Your Code
By Bob Belderbos on 24 October 2017
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.
200 Days of PyBites, 100 Days of Code and our Next Project
By PyBites Team on 7 July 2017
We did it! #100DaysOfCode is done: 5K lines of code, 100 scripts. Just on the day PyBites turns 200 days. In this article we will share our learning on this major project and announce our next 100 days effort …
From Script to Project – Packaging Your Code in Python
By Bob Belderbos on 1 July 2017
This week’s article is about packaging your Python code. Sounds daunting? Actually it is pretty simple.