Decimal vs float in Python
When working with fractions in Python, we tend to use floats, but we also have the decimal module. Learn how to use it, and its benefits over floats.
When working with fractions in Python, we tend to use floats, but we also have the decimal module. Learn how to use it, and its benefits over floats.
You may be familiar with Python's format method, but what about the format function? Learn to use Python's formatting language without string interpolation!
In this post we cover a lesser known string method called partition. It has a lot of similarities to split, but there are some interesting differences.
In this post we dive deeper into Python's formatting syntax, learning about displaying numbers in different bases. We also make a neat colour converter too!
In this post we finish off our Snake game using Tkinter's Canvas widget. Learn how to move objects on the Canvas, delete them, or add more.