Python object-oriented video material sharing
Object-oriented is a very mainstream idea in current programming languages. Python has a very good implementation of object-oriented. At the same time, with the help of Python's flexible syntax, some cool object-oriented features can be implemented.
Python has been an object-oriented language from the beginning. Because of this, it is easy to create classes and objects in Python. In this chapter we will introduce object-oriented programming in Python in detail.
If you have not been exposed to object-oriented programming languages before, you may need to first understand some basic features of object-oriented languages and form a basic object-oriented concept in your mind, which will help you Easily learn object-oriented programming in Python.
Next, let’s briefly understand some basic characteristics of object-oriented.
What is difficult to learn about object-oriented is not the concepts and other knowledge points, but the object-oriented way of thinking:
The basic ideas of object-oriented are encapsulation, inheritance, Polymorphic.
First is inheritance:
Define a class:
The code is as follows:
class Bird(object): have_feather = True way_of_reproduction = 'egg'
Call this class:
The code is as follows:
summer = Bird() print summer.way_of_reproduction
Different from Java, Python does not require new to instantiate a class.
Similarly, Python classes can define methods below:
The code is as follows:
class Bird(object): have_feather = True way_of_reproduction = 'egg' def say(self, word='hi hi'): print 'i say :' + word
Note that all class functions must have at least one Parameter, this parameter must be self.
Functions outside the class do not have this restriction.
The code is as follows:
chk = Chicken() print chk.have_feather print chk.sat('hello')
__init__() method
__init__() is a special method. There will be some special methods in Python, and Python will handle them in a special way. Special method names are characterized by two underscores before and after them.
The __init__() method is special in that if you define this method in a class, Python will automatically call this method once you create an object based on this class (this process is also called initialization).
For example:
The code is as follows:
class happyBird(Bird): def __init__(self,more_words): print 'We are happy birds.',more_words hb = happyBird('Happy,Happy!')
Overloading of the parent class method:
The code is as follows:
class Hello(object): name = 'hello' def __init__(self): self.name='my name is hello' #类中的参数必须带有self参数 def sayhi(self): print 'hi you' class World(Hello): def __init__(self): #这里访问的是父类初始化的变量名 print 'before:',Hello.name super(World,self).__init__() #由于调用了父类的初始化构造函数,继承了父类的变量的改变 print 'after:',self.name #近似于方法重载 def sayhi(self,word='baby'): #调用父类sayhi方法 super(World,self).sayhi() print 'hi '+word def sayWorld(self): print 'hi,hello world' if __name__ == '__main__': c = World() c.sayhi() c.sayWorld()
In addition, python allows multiple inheritance, but this is a very dangerous operation and it is recommended not to use it casually.
About Python's polymorphism, just like JavaScript, you can directly access the properties of the object without using interfaces and without type conversion.
For type judgment, there are the type() function and the isinstance() function to judge whether it is a subclass of a certain function.
Copy the code The code is as follows:
isinstance(object, classinfo)
Determine whether the instance is this class or object is a variable
classinfo is a type (tuple, dict, int, float)
Determine whether the variable is of this type
The code is as follows:
class objA: pass A = objA() B = 'a','v' C = 'a string' print isinstance(A, objA) print isinstance(B, tuple) print isinstance(C, basestring)
Output result:
True
True
True
The above is the detailed content of Python object-oriented video material sharing. 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

Error loading Pickle file in Python 3.6 environment: ModuleNotFoundError:Nomodulenamed...

"DebianStrings" is not a standard term, and its specific meaning is still unclear. This article cannot directly comment on its browser compatibility. However, if "DebianStrings" refers to a web application running on a Debian system, its browser compatibility depends on the technical architecture of the application itself. Most modern web applications are committed to cross-browser compatibility. This relies on following web standards and using well-compatible front-end technologies (such as HTML, CSS, JavaScript) and back-end technologies (such as PHP, Python, Node.js, etc.). To ensure that the application is compatible with multiple browsers, developers often need to conduct cross-browser testing and use responsiveness

The speed of mobile XML to PDF depends on the following factors: the complexity of XML structure. Mobile hardware configuration conversion method (library, algorithm) code quality optimization methods (select efficient libraries, optimize algorithms, cache data, and utilize multi-threading). Overall, there is no absolute answer and it needs to be optimized according to the specific situation.

Modifying XML content requires programming, because it requires accurate finding of the target nodes to add, delete, modify and check. The programming language has corresponding libraries to process XML and provides APIs to perform safe, efficient and controllable operations like operating databases.

An application that converts XML directly to PDF cannot be found because they are two fundamentally different formats. XML is used to store data, while PDF is used to display documents. To complete the transformation, you can use programming languages and libraries such as Python and ReportLab to parse XML data and generate PDF documents.

For small XML files, you can directly replace the annotation content with a text editor; for large files, it is recommended to use the XML parser to modify it to ensure efficiency and accuracy. Be careful when deleting XML comments, keeping comments usually helps code understanding and maintenance. Advanced tips provide Python sample code to modify comments using XML parser, but the specific implementation needs to be adjusted according to the XML library used. Pay attention to encoding issues when modifying XML files. It is recommended to use UTF-8 encoding and specify the encoding format.

To convert XML images, you need to determine the XML data structure first, then select a suitable graphical library (such as Python's matplotlib) and method, select a visualization strategy based on the data structure, consider the data volume and image format, perform batch processing or use efficient libraries, and finally save it as PNG, JPEG, or SVG according to the needs.

Use most text editors to open XML files; if you need a more intuitive tree display, you can use an XML editor, such as Oxygen XML Editor or XMLSpy; if you process XML data in a program, you need to use a programming language (such as Python) and XML libraries (such as xml.etree.ElementTree) to parse.
