广州北大青鸟计算机职业培训学校
互联网技术培训、软件技术培训、大数据培训、云计算培训、数据分析培训信息网
当前位置:网站首页 > 软件教程 > Python技术 > 正文

Python type() 函数_惠州计算机Python培训学校

作者:黄君发布时间:2021-01-29分类:Python技术浏览:1992


导读:type() 函数如果你只有第一个参数则返回对象的类型,三个参数返回新的类型对象。 isinstance() 与 type() 区别: type() 不会认为子类是一种父类类型,不考虑继承关系。

描述

type() 函数如果你只有第一个参数则返回对象的类型,三个参数返回新的类型对象。

isinstance() 与 type() 区别:

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

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

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


语法

以下是 type() 方法的语法:

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


参数

name -- 类的名称。

bases -- 基类的元组。

dict -- 字典,类内定义的命名空间变量。


返回值

一个参数返回对象类型, 三个参数,返回新的类型对象。


实例

以下展示了使用 type 函数的实例:

# 一个参数实例

>>> type(1)

<type 'int'> 

>>> type('bdqn')

<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'>


type() 与 isinstance()区别:

class A:

    pass 

 class B(A):

    pass

 

isinstance(A(), A)    # returns True

type(A()) == A        # returns True

isinstance(B(), A)    # returns True

type(B()) == A        # returns False


标签:惠州计算机软件培训惠州计算件软件开发惠州计算机软件基础惠州计算机Python软件开发惠州Python培训学校惠州Python培训python基础教程python是什么python教程python入门


Python技术排行
标签列表
网站分类
文章归档
最近发表