本文主要是介绍python 学习汇总45:对象数据类型判断(基础学习-基础类型函数类判断 推荐tcy),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
对象数据类型判断(基础学习-基础类型函数类判断 推荐tcy) 2018 / 11 / 1 7目录
1.数据类型
1.Python内置数据类型
2.typing模块 参考本人博文
3.types模块 参考本人博文
4.inspect模块 参考本人博文2.数据类型判断,相等判断2.1.数字判断
2.2.字符串
2.3.序列 typing.Sequence
2.4.bytes判断
2.5.数组
2.6.自定义判断
2.7.None判断
2.8.切片判断
2.9.省略号判断
2.10.range判断
2.11.函数判断
2.12.生成器,迭代器 判断
2.13.类类型判断 参考本人博文
3.对象引用计数
1.1.对象判断
对象特征:每个对象都有一个标识一个类型和一个值。
1) 类型判断:
is运算符:比较两个对象是否相同;即id,值,类型都相同
# 基本类型int,float,complex,str不要用is来做相等判断
取对象ID: id(‘’‘对象’) 返回一个表示其身份的整数。2) ‘==’相等判断: 仅仅数值相同,id,type有可能不同
1.2.对象类型判断
1) 基本类型:bool, int(long), float, complex, str, tuple, list, dict,set,frozenset直接运用于type或isinstance函数
2) 扩展类型:ellipsis, NoneType, object, slice, type, range,array.ArrayType,numbers.Number需要先导入相应的模块types,typing,inspect,builtins或自己构建此类型3)type(),isinstance()函数:type(): 返回对象类型;用途:基本的类型判断 ;不会认为子类是父类isinstance(object,class -or -type- or -tuple)判断类型是否相同;会认为子类是父类类型说明:扩展类型最好不用type(),如一定要用应构建一个相似类型如:ArrayType=type(array.array('i'))b=array.array('u','hello')type(b) is ArrayType# True
2.类型判断,相等判断:
2.1.数字判断
import numbers
isinstance(4, numbers.Number) #Truetype(123) == int
INT_Type=type(0) #自定义类型
type(12) is INT_Type #Trueid(int)=id(INT_Type)=id(type(12)
type(12)==INT_Typei1=2; i2=2.0
i1 == i2, i1 is i2 # (True, False)2.2.字符串
str1 = '123' ;str2 = str(123)
isinstance(str1,str2) #True 等价isinstance('s1',str)
str1 == str2, str1 is str2 #(True, False)2.3.序列 typing.Sequence
isinstance('s',typing.Sequence)#tuple,list ,str是 序列True
isinstance([1,2],list) #Truea = [1, 2];b = [1, 2]
a==b,a is b # (True, False)
id(a), id(b) # (48189960, 48126536)d1={'k1':2,33:44};d2={33:44,'k1':2}
d1==d2,d1 is d2 # (True, False)s1={1,'s'};s2={'s',1}
s1==s2,s1 is s2 #(True, False)2.4.bytes判断
isinstance(b'a', bytes) #True2.5.数组
import array
a=array.array('i',[1]);b=array.array('f',[1.0])
isinstance(a,array.ArrayType)#True正确用法
a==b,a is b #(True, False)2.6.自定义判断
lst=[1]
isinstance(lst, (int, str, list)) #任意一个满足类型都为True2.7.None判断
NoneType = type(None) #NoneType2.8.切片判断
a=slice(None, 10, None)
type(a) is slice # True
# type(a) #<class 'array.array'>
# a is array.ArrayType# False不要这样应用
2.9.省略号判断
...is Ellipsis # True2.10.range判断
isinstance(a, range) # True2.11.函数判断
callable(Student()) '''True Student是类实例,重载__call__'''def fun(a, b):
return a + b
# print(a,b)isinstance(fun,types.BuiltinFunctionType)#Truef1 = fun(1, 2);
f2 = fun(1, 2);
f3 = fun(1, 3)
f1 is f2, f1 is f3 # (True, False) 当把fun函数中return 语句换成print语句时结果(True, True)
f1 == f2, f1 = = f3 # (True, False) (True, True)2.12.生成器,迭代器 不相等a = [1, 2]; b1= iter(a); b2= iter(a)
b1 is b2 #False
b1==b2 #Falseimport typing
isinstance(b1,typing.Iterator)#True 是否为迭代器
isinstance(b1,typing.Iterable)#Trueg=(i for i in range(10))
import inspect
inspect.isgenerator(g)#True是否为生成器def odd(long=1):
n=long
while True:
yield n n+=2inspect.isgeneratorfunction(odd)#True是否为python生成器函数2.13.类类型判断
见相关类类型判断.类实例不相等
class Person(object):
def __init__(self, name, age=0):
self.name = name
self.age = agedef show(self):
print(self.a, self.b)a1 = Person("Tom", 20)
a2 = Person("Tom", 20)a1 == a2 # False
id(a1), id(a2) # (45851760, 45854616)#类实例不相等*******************************************************************
a1.__dict__ == a2.__dict__# True 类实例方法属性相同
*******************************************************************
#如要类实例相等重写__eq__
class Person(object):
def __eq__(self, other):
if self.name != other.name:
return False
if self.age != other.age:
return False
return Truea1 = Person("Tom", 20)
a2 = Person("Tom", 20)
a1 == a2 # True
a1 is a2 # False
============================================
3.对象引用计数sys.getdefcount(a) # 获得对象的引用计数
这篇关于python 学习汇总45:对象数据类型判断(基础学习-基础类型函数类判断 推荐tcy)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!