https://docs.python.org/3/reference/datamodel.html#special-method-names
del x
doesn’t directly call x.del()
— the former decrements the reference count for x by one, and the latter is only called when x’s reference count reaches zero. repr()
built-in function to compute the “official” string representation of an object. This is typically used for debugging, so it is important that the representation is information-rich and unambiguousstr(object)
and the built-in functions format()
and print()
to compute the “informal” or nicely printable string representation of an object.bytes
format
lt / le / eq / ne / gt / ge
hash
bool
class A(object): def __init__(self): print("world") class B(A): def __init__(self): print("hello") super().__init__()
class MySingleton: instance = None def __new__(cls, *args, **kwargs): if not isinstance(cls.instance, cls): cls.instance = object.__new__(cls) return cls.instance
class Singleton(type): _instances = {} def __call__(cls, *args, **kwargs): if cls not in cls._instances: cls._instances[cls] = super (Singleton,cls).__call__(*args, **kwargs) return cls._instances[cls] class SerialNumber(metaclass=Singleton):
delattr(object, name)
This is a relative of setattr()
. The arguments are an object and a string. The string must be the name of one of the object’s attributes. The function deletes the named attribute, provided the object allows it. For example, delattr(x, 'foobar')
is equivalent to del x.foobar
. name need not be a Python identifier (see setattr()).