Working with Python Lists

Working with Python Lists
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

Working with JSON data in Python

Working with JSON data in Python
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

Zipping Lists in Python

Zipping Lists in Python
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

What is a slug in Django and How To Use It?

What is a slug in Django and How To Use It?
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