search

What is class in python

Jun 27, 2019 am 09:22 AM
class

What is class in python

There are two important concepts in the object-oriented programming process: class (class) and object (object, also known as instance, instance), where a class is a certain batch of The abstraction of objects can be understood as a certain concept; the object is a concrete entity. In this sense, what we call people in daily life are actually human objects, not human beings.

The simple syntax for defining a class in Python is as follows:

class 类名:
    执行语句...
    零个到多个类变量...
    零个到多个方法...

The class name only needs to be a legal identifier, but this only meets the grammatical requirements of Python: if it is readable from the program From a gender perspective, Python's class names must be concatenated by one or more meaningful words. The first letter of each word is capitalized, and the other letters are all lowercase. Do not use any separators between words.

Judging from the above definition, Python's class definition is a bit like a function definition. They all start with a colon (:) as the class body and use the uniformly indented part as the class body. The difference is that function definitions use the def keyword, while class definitions use the class keyword.

Python's class definition consists of a class header (referring to the class keyword and class name part) and a uniformly indented class body. The two most important members in the class body are class variables and methods. If no class variables and methods are defined for the class, then the class is equivalent to an empty class. If the empty class does not require other executable statements, the pass statement can be used as a placeholder. For example, the following class definition is allowed:

class Empty:
    pass

Generally speaking, empty classes do not have much practical significance.

The definition order of the members in the class has no effect, and the members can call each other.

The two most important members of a Python class are variables and methods. The class variables belong to the class itself and are used to define the state data contained in the class itself: while the instance variables belong to the objects of the class. , used to define the state data contained in the object: methods are used to define the behavior or function implementation of the object of this class.

Python is a dynamic language, so the class variables contained in its classes can be dynamically added or deleted (when the program assigns values ​​to new variables in the class body, it adds class variables), and the program can also add class variables anywhere. Add variables to existing classes; the program can delete class variables of existing classes through the del statement.

Similarly, the instance variables of Python objects can also be dynamically added or deleted (as long as a new instance variable is assigned a value, the instance variable is added), so the program can add instance variables to its own objects anywhere; the program Instance variables of existing objects can be deleted through the del statement.

The methods defined in the class are instance methods by default. The method of defining instance methods is basically the same as the method of defining functions, except that the first parameter of the instance method will be bound to the caller of the method (the class instance), so instance methods should define at least one parameter, which is usually named self.

Note: The first parameter of the instance method does not have to be called self. In fact, it can be called any parameter name. It is just a convention to name the parameter self, which has the best readability.

There is a special method in the instance method: __init__. This method is called the constructor method. The constructor is used to construct an object of this class, and Python returns an object of this class by calling the constructor (no need to use new).

Many methods in Python that start with a double underscore and end with a double underscore have special meanings. These special methods will be introduced in detail later in this tutorial.

The constructor is the fundamental way for a class to create objects, so Python also provides a function: if the developer does not define any constructor for the class, then Python will automatically define a constructor for the class that contains only one self. The default constructor for parameters.

The following program will define a Person class:

class Person :
    '这是一个学习Python定义的一个Person类'
    # 下面定义了一个类变量
    hair = 'black'
    def __init__(self, name = 'Charlie', age=8):
        # 下面为Person对象增加2个实例变量
        self.name = name
        self.age = age
    # 下面定义了一个say方法
    def say(self, content):
        print(content)

The above Person class code defines a construction method. The construction method only has a special method name: __init__, the first part of the method One parameter is also self, bound to the object initialized by the constructor.

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

Statement
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
The Main Purpose of Python: Flexibility and Ease of UseThe Main Purpose of Python: Flexibility and Ease of UseApr 17, 2025 am 12:14 AM

Python's flexibility is reflected in multi-paradigm support and dynamic type systems, while ease of use comes from a simple syntax and rich standard library. 1. Flexibility: Supports object-oriented, functional and procedural programming, and dynamic type systems improve development efficiency. 2. Ease of use: The grammar is close to natural language, the standard library covers a wide range of functions, and simplifies the development process.

Python: The Power of Versatile ProgrammingPython: The Power of Versatile ProgrammingApr 17, 2025 am 12:09 AM

Python is highly favored for its simplicity and power, suitable for all needs from beginners to advanced developers. Its versatility is reflected in: 1) Easy to learn and use, simple syntax; 2) Rich libraries and frameworks, such as NumPy, Pandas, etc.; 3) Cross-platform support, which can be run on a variety of operating systems; 4) Suitable for scripting and automation tasks to improve work efficiency.

Learning Python in 2 Hours a Day: A Practical GuideLearning Python in 2 Hours a Day: A Practical GuideApr 17, 2025 am 12:05 AM

Yes, learn Python in two hours a day. 1. Develop a reasonable study plan, 2. Select the right learning resources, 3. Consolidate the knowledge learned through practice. These steps can help you master Python in a short time.

Python vs. C  : Pros and Cons for DevelopersPython vs. C : Pros and Cons for DevelopersApr 17, 2025 am 12:04 AM

Python is suitable for rapid development and data processing, while C is suitable for high performance and underlying control. 1) Python is easy to use, with concise syntax, and is suitable for data science and web development. 2) C has high performance and accurate control, and is often used in gaming and system programming.

Python: Time Commitment and Learning PacePython: Time Commitment and Learning PaceApr 17, 2025 am 12:03 AM

The time required to learn Python varies from person to person, mainly influenced by previous programming experience, learning motivation, learning resources and methods, and learning rhythm. Set realistic learning goals and learn best through practical projects.

Python: Automation, Scripting, and Task ManagementPython: Automation, Scripting, and Task ManagementApr 16, 2025 am 12:14 AM

Python excels in automation, scripting, and task management. 1) Automation: File backup is realized through standard libraries such as os and shutil. 2) Script writing: Use the psutil library to monitor system resources. 3) Task management: Use the schedule library to schedule tasks. Python's ease of use and rich library support makes it the preferred tool in these areas.

Python and Time: Making the Most of Your Study TimePython and Time: Making the Most of Your Study TimeApr 14, 2025 am 12:02 AM

To maximize the efficiency of learning Python in a limited time, you can use Python's datetime, time, and schedule modules. 1. The datetime module is used to record and plan learning time. 2. The time module helps to set study and rest time. 3. The schedule module automatically arranges weekly learning tasks.

Python: Games, GUIs, and MorePython: Games, GUIs, and MoreApr 13, 2025 am 12:14 AM

Python excels in gaming and GUI development. 1) Game development uses Pygame, providing drawing, audio and other functions, which are suitable for creating 2D games. 2) GUI development can choose Tkinter or PyQt. Tkinter is simple and easy to use, PyQt has rich functions and is suitable for professional development.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment