python3 判断数据类型
Posted 正态分个布
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3 判断数据类型相关的知识,希望对你有一定的参考价值。
def estType(): eventList = [1, ‘Tom‘, {‘name‘: ‘Lucy‘, ‘age‘: 16, ‘grade‘: 98}] print(type(eventList[0]) is int) print(type(eventList[1]) is int) print(type(eventList[1]) is str) print(type(eventList[2]) is dict)
结果:
True
False
True
True
打印出来的结果是真和假,当然也可以封装成一个标准的函数,传入一个参数,判断其数据类型,返回真假,有时候还是很好用的
以上是关于python3 判断数据类型的主要内容,如果未能解决你的问题,请参考以下文章