在Python中type函数怎么用 python type函数怎么用

主机教程 建站分享 2年前 (2022-11-07) 184次浏览

文章摘要:在Python中type函数怎么用 python type函数怎么用

在Python中使用type函数的方法 type:type()函数的作用是只有第一个参数则返回对象的类型,三个 […]

在Python中使用type函数的方法

type:type()函数的作用是只有第一个参数则返回对象的类型,三个参数返回新的类型对象。

type()函数语法:

type(object)

type(name, bases, dict)

参数:

name:类的名称。

bases:基类的元组。

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

type()函数使用方法:

# 一个参数实例

>>> type(1)

>>> type('runoob')

>>> type([2])

>>> type({0:'zero'})

>>> x = 1

>>> type( x ) == int # 判断类型是否相等

True

# 三个参数

>>> class X(object):

... a = 1

...

>>> X = type('X', (object,), dict(a=1)) # 产生一个新的类型 X

>>> X


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:在Python中type函数怎么用 python type函数怎么用
文章链接:http://www.7966.org/post/15305.html
转载请注明出处

喜欢 (0)