Django Tip: Use DecimalField for money
When working with money values in Django, the first thought is to use FloatField to represent currency in the model. However, FloatField uses the float type internally which comes with some precision issues.
The problem
Take a look at this piece of ...
koladev.hashnode.dev2 min read