| Name (omit double dash) |
Description |
| call |
|
| cmp |
comparison method |
| del |
Garbage collection is called before, and this method should be used with caution when developing, because this method may cause the GC to not be |
| delattr |
This method is called when a binding relationship is required |
eq ge gt le Lt Ne |
x==y x>=y x>y x<y x<=y x<>y |
| getattr |
x.y call (called when GetAttribute finds the property) |
| getattribute |
x.y" is called (unconditionally called) |
| get |
|
| init |
|
| new |
called before instantiation, triggered at C (), can do some work in this method, such as implementing singleton mode |
| nonzero |
This method is called when bool (x) is called |
| setattr |
This is actually the correspondence to the getattribute, not the getattr corresponding to the |
| repr |
|
| str |
When using the Str method, the advantage is called |
| Unicode |
When you use Unicode (x), you call the |
Python Object Special Methods list