190717 Python 内置函数之type

文章目录
  1. II. 其他
    1. 1. 一灰灰Blog: https://liuyueyi.github.io/hexblog
    2. 2. 声明
    3. 3. 扫描关注

返回参数类型

  • type: 不认为子类与父类类型相同
  • isinstance: 子类是一种父类类型

语法

1
2
type(object)
type(name, bases, dict)

上面两种用法表示的含义不同

  • 一个参数:返回对象类型
  • 三个参数:根据定义返回一个新的类型对象
    • name 类名
    • bases 父类
    • dict 字典

实例

1
2
3
4
5
6
7
8
9
10
11
12
13
>>> type('str')
<class 'str'>
>>> type(b'123')
<class 'bytes'>
>>> type('123')
<class 'str'>

>>> x = type('x', (object,), dict(a=1))
>>> x
<class '__main__.x'>
>>> a = x()
>>> a.a
1

II. 其他

1. 一灰灰Bloghttps://liuyueyi.github.io/hexblog

一灰灰的个人博客,记录所有学习和工作中的博文,欢迎大家前去逛逛

2. 声明

尽信书则不如,以上内容,纯属一家之言,因个人能力有限,难免有疏漏和错误之处,如发现bug或者有更好的建议,欢迎批评指正,不吝感激

3. 扫描关注

一灰灰blog

QrCode

# Python

评论

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×