栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Python

Python判断类型

Python 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Python判断类型

Python判断类型,基本类型主要使用type() ,  对象类型使用  instance()

print( type(123))
print( type(123) == int)
print( type("hello"))
print( type("hello") == str)
print( type(1.234))
print( type(1.234) == float)
print( type([1,2,3]))
print( type((1,2,3)))
print( type( {"a":1}))


import types

def fun():
  pass

print( type(fun))
print( type(fun) == types.FunctionType )
print( type(abs) )
print( type(abs) == types.BuiltinFunctionType )
print( type(lambda x: x) )
print( type(lambda x: x)==types.LambdaType )
print( type((x for x in range(10))) )
print( type((x for x in range(10)))==types.GeneratorType )


print("--------------------------------")

class Animal(object):
    pass

class Cat(Animal):
      pass


class Dog(Animal):
       pass


a = Animal()
c = Cat()
d = Dog()

#  isinstance()判断一个对象是否是某种类型。

print(isinstance(a, Animal))
print(isinstance(c, Animal))
print(isinstance(d, Animal))
print(isinstance(c, Cat))
print(isinstance(d, Dog))

运行效果:

 

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/833719.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号