Python lists are extremely powerful and very performant data structures, in this tutorial I will show you a few recipes that you can use when working with lists.VIEW POST
JSON is a very widely used data format. Its popularity is probably due to it's simplicity, flexibility and ease of use. Python provides some pretty powerful tools that makes it very easy to work with JSON data.VIEW POST
In this tutorial I will teach you everything about the zip function. How to working with multiple lists at once, how to loop on two lists in parallel, how to unzip lists and how to transpose 2d matrixes using the zip builtin.VIEW POST
Let's say you have a piece of initialization code, that you want to run only once, when Django is starting up. What's the proper way to handle this? Where should you put this code?VIEW POST
If you are working with Django or a similar web framework, you might have come across the term `slug`, `slugField` or `slugify`. What do these terms mean, why are slugs useful and how to use them properly? Where does the term slug come from?VIEW POST