Abstraction in Python
Hiding Complexity, Showing Only What Matters

Search for a command to run...
Articles tagged with #programming-blogs
Hiding Complexity, Showing Only What Matters

Same Method, Different Behavior

When we write programs, we often notice something interesting:many objects share common features. For example: A Student and a Teacher both have a name and an email. A Car and a Bike are both vehicles. A Dog and a Cat are both animals. Instead o...

In the previous articles, we learned how classes and objects help us structure our programs in a better way.Now, let’s move one step forward and understand another important concept in Object-Oriented Programming — Encapsulation. Encapsulation is one...

If you’ve read the first article of this series, you already know what Object-Oriented Programming (OOP) is and how it differs from the traditional procedural approach.Now, let’s take the next step — understanding the heart of OOP: Classes and Object...

1. INTRODUCTION File handling is a very crucial and important concept when we want to store user data. For example, if we develop a website and want to store the information of each and every user and their details, then we can use this concept of fi...
