python中type()是什么意思
程序员文章站
2022-03-19 09:07:51
...
type()是一个内建的获取变量类型的函数。
type()函数有两个用法,当只有一个参数的时候,返回对象的类型。当有三个参数的时候返回一个类对象。
语法:
type(object) type(name, bases, dict)
具体用法:
一个参数
type(object)
返回一个对象的类型,如:
In [1]: a = 10 In [2]: type(a) Out[2]: int
三个参数
tpye(name, bases, dict)
name 类名
bases 父类的元组
dict 类的属性方法和值组成的键值对
返回一个类对象:
# 实例方法 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()
输出结果:
tom this is a instance method this is a class method this is a static method
推荐教程:python教程
以上就是python中type()是什么意思的详细内容,更多请关注其它相关文章!
上一篇: 关于json的解析问题
下一篇: CSS如何实现各种形状
推荐阅读
-
smartlmage on是什么意思 php smarty模版引擎中的缓存应用
-
php中self的意思是什么
-
大家帮帮忙~hash << 5 + hash 中的<<是什么意思?该如何处理
-
Python面试题之这两个参数是什么意思:*args,**kwargs?我们为什么要使用它们?
-
关于python中“赋值就是建立一个对象的引用”,大家怎么看?Python一切皆为对象又是什么意思?
-
php中self的意思是什么
-
oracle sql 语句中where条件中 1=1 是什么意思
-
php中{}大括号是什么意思
-
thinkphp中$this->reset && session($key, null); 这种写法是什么意思?
-
php中$this-)是什么意思?