• 技术文章 >Python技术 >Python基础教程

    python如何判断对象的类型

    FXLFXL2020-08-29 15:36:42原创7356

    type() 函数如果你只有第一个参数则返回对象的类型,三个参数返回新的类型对象。与之类似的是isinstance()函数,但二者有一定的区别。

    (推荐教程:Python入门教程

    isinstance() 与 type() 区别:

    type() 不会认为子类是一种父类类型,不考虑继承关系。

    isinstance() 会认为子类是一种父类类型,考虑继承关系。

    如果要判断两个类型是否相同推荐使用 isinstance()。

    语法:

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

    代码实现:

    # 一个参数实例
    >>> type(1)
    <type 'int'>
    >>> type('phpcn')
    <type 'str'>
    >>> type([2])
    <type 'list'>
    >>> type({0:'zero'})
    <type 'dict'>
    >>> x = 1          
    >>> type( x ) == int    # 判断类型是否相等True
    # 三个参数
    >>> class X(object):
    ...     a = 1
    ...
    >>> X = type('X', (object,), dict(a=1))  # 产生一个新的类型 X
    >>> X
    <class '__main__.X'>
    专题推荐:python 对象 类型
    上一篇:使用什么命令可以查看安装的python版本号 下一篇:python如何在字典中添加键值对

    相关文章推荐

    • python如何查看编码类型• python怎么把int类型转换成列表

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网