Beautiful-ugly/explicit-implicit – Talking about Python

Beautiful-ugly/explicit-implicit Let’s start with beauty. They say beauty is in the eye of the beholder. And this is why, when you behold improperly indented code, you begin to understand the beauty of actually indented code. Here is the same code written correctly in JavaScript and Python: const value = 5; for (let i = 0; […]

Containerization – Talking about Python

Containerization Containers are made using the Docker library. The creation, destruction, and modification of containers can be automated and orchestrated using Python. It provides a way to programmatically maintain and modify container states. Some applications include the following: You may be wondering what the point of containers is, and that may be because you’ve never […]