


Introduction to whether Python access restrictions are private or public (with examples)
This article brings you an introduction to whether Python access restrictions are private or public (with examples). It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
1. Knowledge points
In a module, we may define many functions and variables. But some functions and variables we hope can be used by others, and some functions and variables we hope to only be used inside the module, so?
We can achieve this goal by defining whether the function and variable are public or private.
In Python, this is achieved through the underscore "_" prefix.
public: public. Normal function and variable names are of this type and can be referenced directly. For example, variables abc, PI, etc.;
Special variables: The format is __xxx__, starting with __ and ending with __. Can be referenced directly, but has special uses. For example, __author__ and __name__ are special variables. Generally, do not use this type of variable name for variables you define yourself.
private: private, non-public, format similar to _xxx_ and __xxx, such as __num.
should not be referenced directly, only internally accessible, not externally accessible.
The internal state of the object cannot be modified at will, so the code is more robust through the protection of access restrictions.
2. Example
Inside the Class class, there can be attributes and methods. External code can manipulate data by directly calling the instance variable method, hiding the internal complex logic. However, external code is still free to modify an instance's properties. For example:
>>>b.score 99 >>>b.score = 59 >>>b.score 59
If you want to prevent internal attributes from being accessed externally, you can add two underscores "__" before the name of the attribute to turn it into a private variable, as follows:
class Student(object): def __init__(self, name, score): self.__name = name self.__score = score def print_score(self): print('%s: %s' % (self.__name, self.__score))
Try to When accessing properties from outside, an error will be reported because private variables cannot be accessed externally.
>>> bart = Student('Bart Simpson', 98) >>> bart.__name # 私有变量:不能被外部访问 Traceback (most recent call last): File "<stdin>", line 1, in <module> AttributeError: 'Student' object has no attribute '__name'
But what if the external code wants to get the name and score?
Add methods to obtain attributes to the Student class: get_name() and get_score(), as follows:
class Student(object): ... def get_name(self): return self.__name def get_score(self): return self.__score
What if external code modifies the score? You can add a setting method to the Student class: set_score()
:
... def set_score(self, score): # 避免传入无效参数 if 0 <= score <= 100: self.__score = score else: raise ValueError('bad score')
Then must the private instance variables starting with a double underscore not be accessible from the outside? Not really.
You cannot access __name directly because the Python interpreter externally changes the __name variable to _Student__name, so you can still access the __name variable through _Student__name.
>>> bart = Student('Bart Simpson', 98) >>> bart.get_name() 'Bart Simpson' >>> bart.__name = 'New Name' # 给bart新增的__name变量 >>> bart.__name # !与class内部的__name变量不是一个变量! 'New Name' >>> bart.get_name() # get_name()内部返回self.__name (_Student__name) 'Bart Simpson'
On the surface, the external code "successfully" sets the __name variable, but in fact this __name variable and the __name variable inside the class are not the same variable! The internal __name variable has been automatically changed to _Student__name by the Python interpreter, and the external code adds a new __name variable to bart.
So Python does not have a way to completely restrict access to private functions or variables, so it is not "cannot be directly referenced". From programming habits, private functions or variables should not be referenced. What's their use?
For example:
def _private_1 (name): return 'hello,%s ' % name def _private_2 (name): return 'hi , %s ' % name def greeting(name): if len(name) > 3: return _private_1 (name) else: return _private_2 (name)
The greeting() function is exposed in the module, but the internal logic is hidden using the private function. In this way, calling the greeting() function does not need to worry about the details of the internal private function.
This is a very useful method of code encapsulation and abstraction, that is: all functions that do not need to be referenced from the outside are defined as private, and only functions that need to be referenced from the outside are defined as public.
3. Complete code
class Student(object): def __init__(self, name, score): self.__name = name self.__score = score def print_score(self): print('%s: %s' % (self.__name, self.__score)) def get_name(self): return self.__name def get_score(self): return self.__score def set_score(self, score): # 避免传入无效参数 if 0 <= score <= 100: self.__score = score else: raise ValueError('bad score') def _private_1 (name): return 'hello,%s ' % name def _private_2 (name): return 'hi , %s ' % name def greeting(name): if len(name) > 3: return _private_1 (name) else: return _private_2 (name)
The above is the detailed content of Introduction to whether Python access restrictions are private or public (with examples). For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



You can learn basic programming concepts and skills of Python within 2 hours. 1. Learn variables and data types, 2. Master control flow (conditional statements and loops), 3. Understand the definition and use of functions, 4. Quickly get started with Python programming through simple examples and code snippets.

Python is widely used in the fields of web development, data science, machine learning, automation and scripting. 1) In web development, Django and Flask frameworks simplify the development process. 2) In the fields of data science and machine learning, NumPy, Pandas, Scikit-learn and TensorFlow libraries provide strong support. 3) In terms of automation and scripting, Python is suitable for tasks such as automated testing and system management.

It is impossible to view MongoDB password directly through Navicat because it is stored as hash values. How to retrieve lost passwords: 1. Reset passwords; 2. Check configuration files (may contain hash values); 3. Check codes (may hardcode passwords).

As a data professional, you need to process large amounts of data from various sources. This can pose challenges to data management and analysis. Fortunately, two AWS services can help: AWS Glue and Amazon Athena.

To read a queue from Redis, you need to get the queue name, read the elements using the LPOP command, and process the empty queue. The specific steps are as follows: Get the queue name: name it with the prefix of "queue:" such as "queue:my-queue". Use the LPOP command: Eject the element from the head of the queue and return its value, such as LPOP queue:my-queue. Processing empty queues: If the queue is empty, LPOP returns nil, and you can check whether the queue exists before reading the element.

Question: How to view the Redis server version? Use the command line tool redis-cli --version to view the version of the connected server. Use the INFO server command to view the server's internal version and need to parse and return information. In a cluster environment, check the version consistency of each node and can be automatically checked using scripts. Use scripts to automate viewing versions, such as connecting with Python scripts and printing version information.

The steps to start a Redis server include: Install Redis according to the operating system. Start the Redis service via redis-server (Linux/macOS) or redis-server.exe (Windows). Use the redis-cli ping (Linux/macOS) or redis-cli.exe ping (Windows) command to check the service status. Use a Redis client, such as redis-cli, Python, or Node.js, to access the server.

Navicat's password security relies on the combination of symmetric encryption, password strength and security measures. Specific measures include: using SSL connections (provided that the database server supports and correctly configures the certificate), regularly updating Navicat, using more secure methods (such as SSH tunnels), restricting access rights, and most importantly, never record passwords.
