码迷,mamicode.com
首页 > 编程语言 > 详细

【Python学习】关于获取数据类型的内置函数type

时间:2019-12-24 18:11:43      阅读:73      评论:0      收藏:0      [点我收藏+]

标签:数据   父类   ase   名称   lse   pre   学习   取数   命名   

获取数据类型的函数:type()

>>> type(a)
<class str>

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

语法:

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

参数

  • name -- 类的名称。
  • bases -- 基类的元组。
  • dict -- 字典,类内定义的命名空间变量。

判断数据类型:isinstance()

>>> a = 你好
>>> isinstance(a,str)
True
>>> isinstance(a,int)
False

isinstance() 与 type() 区别:

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

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

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

 

 

【Python学习】关于获取数据类型的内置函数type

标签:数据   父类   ase   名称   lse   pre   学习   取数   命名   

原文地址:https://www.cnblogs.com/HeiDi-BoKe/p/12092783.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!