香港云主机最佳企业级服务商!

ADSL拨号VPS包含了中国大陆(联通,移动,电信,)

中国香港,国外拨号VPS。

当前位置:云主机 > python >

电信ADSL拨号VPS
联通ADSL拨号VPS
移动ADSL拨号VPS

详解Python中的type和object


时间:2022-01-11 10:30 作者:admin610456


type 所有类是type生成的

a = 1b = "abc"print("type a:{}".format(type(a)))print("type int:{}".format(type(int)))print("type b:{}".format(type(b)))print("type str:{}".format(type(str)))

result:

type a:<class 'int'>type int:<class 'type'>type b:<class 'str'>type str:<class 'type'>

python/' target='_blank'>python中是一切皆对象的,类其实也是对象,首先type生成了<class 'int'>这个对象,<class 'int'>又生成了1这个对象,type --> int --> 1

同样,type生成了<class 'str'>这个对象,<class 'type'>又生成了"abc"这个对象,type --> str--> “abc”,即type -->生成类对象 -->对象

object 所有类的最顶层基类是object

print("int 的基类是:{}".format(int.__bases__))print("str 的基类是:{}".format(str.__bases__))

result:

int 的基类是:(<class 'object'>,)str 的基类是:(<class 'object'>,)<class 'int'>和<class 'str'>的基类都是 <class 'object'> 即:object是最顶层的基类

type与object的关系(type的基类是object,object是type生成的,object的基类为空)

print("type 的基类是:{}".format(type.__bases__))print("type object:{}".format(type(object)))print("object 的基类是:{}".format(object.__bases__))

result:

type 的基类是:(<class 'object'>,)type object:<class 'type'>object 的基类是:()

总结

以上所述是小编给大家介绍的Python中type和object,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

(责任编辑:admin)






帮助中心
会员注册
找回密码
新闻中心
快捷通道
域名登录面板
虚机登录面板
云主机登录面板
关于我们
关于我们
联系我们
联系方式

售前咨询:17830004266(重庆移动)

企业QQ:383546523

《中华人民共和国工业和信息化部》 编号:ICP备00012341号

Copyright © 2002 -2018 香港云主机 版权所有
声明:香港云主机品牌标志、品牌吉祥物均已注册商标,版权所有,窃用必究

云官方微信

在线客服

  • 企业QQ: 点击这里给我发消息
  • 技术支持:383546523

  • 公司总台电话:17830004266(重庆移动)
  • 售前咨询热线:17830004266(重庆移动)