Python的type语句怎么用? 我用help(type)输出的是这些,谁能把这些全部给翻译一下或者找一个网站翻译

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python的type语句怎么用? 我用help(type)输出的是这些,谁能把这些全部给翻译一下或者找一个网站翻译相关的知识,希望对你有一定的参考价值。

Help on class type in module builtins:

class type(object)
| type(object_or_name, bases, dict)
| type(object) -> the object's type
| type(name, bases, dict) -> a new type
|
| Methods defined here:
|
| __call__(self, /, *args, **kwargs)
| Call self as a function.
|
| __delattr__(self, name, /)
| Implement delattr(self, name).
|
| __dir__(...)
| __dir__() -> list
| specialized __dir__ implementation for types
|
| __getattribute__(self, name, /)
| Return getattr(self, name).
|
| __init__(self, /, *args, **kwargs)
| Initialize self. See help(type(self)) for accurate signature.
|
| __instancecheck__(...)
| __instancecheck__() -> bool
| check if an object is an instance
|
| __new__(*args, **kwargs)
| Create and return a new object. See help(type) for accurate signature.
|
| __prepare__(...)
| __prepare__() -> dict
| used to create the namespace for the class statement
|
| __repr__(self, /)
| Return repr(self).
|
| __setattr__(self, name, value, /)
| Implement setattr(self, name, value).
|
| __sizeof__(...)
| __sizeof__() -> int
| return memory consumption of the type object
|
| __subclasscheck__(...)
| __subclasscheck__() -> bool
| check if a class is a subclass
|
| __subclasses__(...)
| __subclasses__() -> list of immediate subclasses
|
| mro(...)
| mro() -> list
| return a type's method resolution order
|
| ----------------------------------------------------------------------
| Data descriptors defined here:
|
| __abstractmethods__
|
| __dict__
|
| __text_signature__
|
| ----------------------------------------------------------------------
| Data and other attributes defined here:
|
| __base__ = <class 'object'>
| The most base type
|
| __bases__ = (<class 'object'>,)
|
| __basicsize__ = 412
|
| __dictoffset__ = 132
|
| __flags__ = -2146675712
|
| __itemsize__ = 20
|
| __mro__ = (<class 'type'>, <class 'object'>)
|
| __weakrefoffset__ = 184

之前试过一次翻译这些文档,发现翻译完还是不太明白具体怎么用,建议你直接百度:python type用法吧。 参考技术A type是python类的类型,不是语句追问

所以type怎么用?

以上是关于Python的type语句怎么用? 我用help(type)输出的是这些,谁能把这些全部给翻译一下或者找一个网站翻译的主要内容,如果未能解决你的问题,请参考以下文章

我用的是VISTA系统,磁盘安全权限让我改乱了,HELP

我用的是 MSSQL 2005 请问下 用SQL语句 数据库查询某个表是不是存在不存在则创建这个表,该怎么写。

python中的ssl error怎么解决

10. Python 帮助

我用jdbc向mysql插入一条语句用当前时间,可是查询的时候显示的时间不是当前,早了几个小时,怎么回事啊

关于python的webbrowser