Introduction

Welcome! Today's subject is Encapsulation, a cornerstone of Object-Oriented Programming (OOP). Encapsulation bundles data and the operations that we perform on them into one unit, namely, an object. It guards data against unwanted alterations, ensuring the creation of robust and maintainable software.

Prepare yourself for an exciting journey as we delve into how encapsulation works in Python and explore the vital role it plays in data privacy.

Unraveling Encapsulation

Starting with the basics, Encapsulation is similar to packing data and the methods that modify this data into a single compartment known as a class. It safeguards the data in an object from external interference.

To illustrate, consider a Python class representing a bank account. Without encapsulation, the account balance could be directly altered. With encapsulation, however, the balance can only change through specified methods, like depositing or withdrawing.

Encapsulation: Guardian of Data Privacy

Encapsulation restricts direct access to an object's data and prevents unwanted data alteration. This principle is comparable to window blinds, allowing you to look out while preventing others from peeping in.

In Python, encapsulation pertains to private and public attributes, which are integral to data privacy. Private attributes, prefixed with two underscores __, warrant caution while being manipulated.

To illustrate, let's consider a Python class named Person, which includes a private attribute __name.

In this example, __name is private, and get_name() enables us to access __name. However, we specify that the name can't be changed, as we don't provide a proper method for that.

In Python, all class members are public by default. To designate an attribute as private, we prefix it with two underscores __.

Getter and Setter Methods in Encapsulation

Within encapsulation, Python uses getter and setter methods to access or modify private attributes. In a class, the getter method retrieves the attribute value, and the setter method alters it. Let's illustrate this.

Here, set_name() and get_name() serve as the setter and getter methods, respectively, for the private attribute __name.

Practical Application and Summary

Let's apply the principle of encapsulation to our BankAccount class, which includes private attributes like account number and balance, along with public methods for withdrawals, deposits, and balance checks.

In the above code, the BankAccount class encapsulates account details, and the public methods manipulate the balance in a controlled way.

Hands-on Exercise and Practice

Admirable! Now it's your turn to apply what you've learned by practicing encapsulation in Python. Remember, practice enhances your comprehension. Enjoy coding!

Sign up
Join the 1M+ learners on CodeSignal
Be a part of our community of 1M+ users who develop and demonstrate their skills on CodeSignal