<==> del x.name
|
|__dict__
|dictionary for instance variables (if defined)
|
|__dir__
|Default dir() implementation.
|
|__doc__
|str(object='') -> str
|str(bytes_or_buffer[, encoding[, errors]]) -> str
|
|Create a new string object from the given object. If encoding or
|errors is specified, then the object must expose a data buffer
|that will be decoded using the given encoding and error handler.
|Otherwise, returns the result of object.__str__() (if defined)
|or repr(object).
|encoding defaults to sys.getdefaultencoding().
|errors defaults to 'strict'.
|
|__eq__
|Return self==value.
|
|__format__
|Default object formatter.
|
|__ge__
|Return self>=value.
|
|__getattribute__
|Return getattr(self, name).
|
|__gt__
|Return self>value.
|
|__hash__
|Return hash(self).
|
|__init_subclass__
|This method is called when a class is subclassed.
|
|__le__
|Return self<=value.
|
|__lt__
|Return self
|__ne__
|Return self!=value.
|
|__new__
|Create and return a new object.See help(type) for accurate signature.
|
|__reduce__
|Helper for pickle.
|
|__reduce_ex__
|Helper for pickle.
|
|__repr__
|Return repr(self).
|
|__setattr__
|Implement setattr(self, name, value).
|
|__sizeof__
|__sizeof__() -> int
|size of object in memory, in bytes
|
|__str__
|Return str(self).
|
|__subclasshook__
|Abstract classes can override this to customize issubclass().
|
|----------------------------------------------------------------------
|Static methods inherited from builtins.type:
|
|__call__(*args, **kwargs) from builtins.object
|Call self as a function.
|
|__getattribute__(*args, **kwargs) from builtins.object
|Return getattr(self, name).
|
|----------------------------------------------------------------------
|Data descriptors inherited from builtins.type:
|
|__abstractmethods__
|
|__base__
|
|__bases__
|
|__basicsize__
|
|__call__
|
|__classcell__
|
|__delattr__
|
|__dict__
|
|__dictoffset__
|
|__dir__
|
|__doc__
|
|__eq__
|
|__flags__
|
|__format__
|
|__ge__
|
|__getattribute__
|
|__gt__
|
|__hash__
|
|__init__
|
|__init_subclass__
|
|__instancecheck__
|
|__itemsize__
|
|__le__
|
|__lt__
|
|__module__
|
|__mro__
|
|__name__
|
|__ne__
|
|__new__
|
|__prepare__
|
|__qualname__
|
|__reduce__
|
|__reduce_ex__
|
|__repr__
|
|__setattr__
|
|__sizeof__
|
|__str__
|
|__subclasscheck__
|
|__subclasses__
|
|__subclasshook__
|
|----------------------------------------------------------------------
|Static methods inherited from object:
|
|__format__($self, /, format_spec)
|Return a formatted version of the object as described by format_spec.
|
|__hash__($self, /)
|Return hash(self).
|
|__init_subclass__$($self, /, **kwargs)
|This method is called when a class is subclassed.
猜你喜欢
- python中如何进行希尔排序?
- 吧椅如何选购?吧椅的清洁与保养
- 防盗窗的选购技巧-防盗窗如何清洁?
- 和田地毯如何清洗?和田地毯是什么?
- 指甲保养也是一门学问 如何处理指甲表面不光滑的情况
- 纯银饰品日常保养方法 如何正确处理发黑银饰
- 卫生间有异味如何去除?水果去异味
- 浴缸应该如何清洁与保养
- 教你如何保养白色衣服
- python实现带错误处理功能的远程文件读取方法
