What is encapsulated in Python?

PHPz
Release: 2023-09-02 15:21:06
forward
1504 people have browsed it

What is encapsulated in Python?

Encapsulation is one of the key concepts of object-oriented languages such as Python and Java. Encapsulation is used to restrict access to methods and variables. In encapsulation, code and data are wrapped in a unit and protected from accidental modification.

Encapsulation is a mechanism that packages data (variables) and code that acts on the data (methods) together as a unit. In encapsulation, variables of one class are hidden from other classes and can only be accessed through methods of the current class.

Encapsulation example

Suppose we have a company selling courses to students, engineers, and professionals. The different departments of the company include operations, finance, accounting, sales, etc. Now, if an employee in the accounting department needs sales records for 2022, he/she does not have direct access.

To access, Customer Department employees need permission from a Sales Department team member. Therefore, sales data is hidden from other departments, similarly, the company's financial data can only be accessed by Financial Data and is hidden from other departments. Account, sales, finance, operations, marketing and other data are hidden from other parts

Use classes to implement encapsulation in Python

Another example of encapsulation is a class, because a class combines data and methods into a single unit. Here, the custom functiondemofunc()displays the student’s record where we can access the public data members. Using objects st1, st2, st3, st4, we access the public methods of the classdemofunc()-

Example

class Students: def __init__(self, name, rank, points): self.name = name self.rank = rank self.points = points # custom function def demofunc(self): print("I am "+self.name) print("I got Rank ",+self.rank) # create 4 objects st1 = Students("Steve", 1, 100) st2 = Students("Chris", 2, 90) st3 = Students("Mark", 3, 76) st4 = Students("Kate", 4, 60) # call the functions using the objects created above st1.demofunc() st2.demofunc() st3.demofunc() st4.demofunc()
Copy after login

Output

I am Steve I got Rank 1 I am Chris I got Rank 2 I am Mark I got Rank 3 I am Kate I got Rank 4
Copy after login

Python access modifiers

Let’s look at access modifiers in Python to understand the concepts of encapsulation and data hiding< /p>

  • public
  • private
  • protected

Public access modifier

Public members can be accessed from inside or outside the class.

Private access modifier

Private members can only be accessed within the class. Define private members by adding two underscores before the member name, for example

__age
Copy after login

Protected access modifier

Protected members can access. From within a class and its subclasses. Define protected members by prefixing the member name with an underscore, for example

_points
Copy after login

The above is the detailed content of What is encapsulated in Python?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!