本文摘自php中文网,作者V,侵删。

type()是一个内建的获取变量类型的函数。
type()函数有两个用法,当只有一个参数的时候,返回对象的类型。当有三个参数的时候返回一个类对象。
语法:
1 2 | type(object)
type(name, bases, dict)
|
具体用法:
一个参数
返回一个对象的类型,如:
1 2 3 | In [1]: a = 10
In [2]: type(a)
Out[2]: int
|
三个参数
name 类名
bases 父类的元组
dict 类的属性方法和值组成的键值对
返回一个类对象:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | # 实例方法
def instancetest(self):
print ( "this is a instance method" )
# 类方法
@classmethod
def classtest(cls):
print ( "this is a class method" )
# 静态方法
@staticmethod
def statictest():
print ( "this is a static method" )
# 创建类
test_property = { "name" : "tom" , "instancetest" : instancetest, "classtest" : classtest, "statictest" : statictest}
Test = type( "Test" , (), test_property)
# 创建对象
test = Test()
# 调用方法
print (test.name)
test.instancetest()
test.classtest()
test.statictest()
|
输出结果:
1 2 3 4 | tom
this is a instance method
this is a class method
this is a static method
|
推荐教程:python教程
以上就是python中type()是什么意思的详细内容,更多文章请关注木庄网络博客!!
相关阅读 >>
Python和selenium以及autoit如何实现文件上传功能的图文代码详解
用Python语言描述最大连续子序列和
Python的单线程多任务的实现
Python如何合并两个列表?
Python中if语句的详细介绍
Python中或者怎么表示
Python如何实现简单的用户交互程序(示例)
Python实现号码归属地查询功能
Python下载后怎么用
盘点由Python开发的网站和应用
更多相关阅读请进入《Python》频道 >>
人民邮电出版社
python入门书籍,非常畅销,超高好评,python官方公认好书。
转载请注明出处:木庄网络博客 » python中type()是什么意思