
How Python Manages Memory: A Simple Introduction
Uncover the Secrets of Python's Memory Management System
Search for a command to run...

Uncover the Secrets of Python's Memory Management System

So before I begin talking, I have a question for you, just don't scroll below & look at the code snippet given below and try to answer this question without running the code, "What is the output of print(t2.foo)?" class FooBar: foo = [] def...

Liskov's substitution principle is a part of the S.O.L.I.D design principle where L is for Liskov's substitution principle. You might be wondering if this sounds like some mathematical principle in computer science that is hardly used in the daily li...

Have you ever pushed your code or created a PR and then you realized that you forgot to remove that print statement or that your code formatting is messed up or even better you forgot to remove those unused imports? If all of the above problems you f...

So software engineers have to work with various technologies & frameworks while creating new pieces of software. Often times we work on some frameworks or libraries that have some handy feature but are not aware of it. So is the case with the Django ...

I was going through Django's source code & I found some fascinating details for loaddata command which provides initial data in your application using fixtures. These details were not present in Django's documentation directly So I thought of writing...