python中判断数据类型非常简单

1. IDLE 中直接用内建函数type()

>>> i =5
>>> type(i)
<class 'int'>
>>> 

2. 代码中就可以用isinstance() 或者 type() 来判断,依然在IDLE中举例

>>> isinstance(i, int)
True
>>> type(i) == int
True

3. 以上对于float, string 也类似

4. 针对string, 它自身有不少相应的判断函数

>>> a="2.4"
>>> a.isdigit()
False
>>> a = "5"
>>> a.isdigit()
True

Logo

科技之力与好奇之心,共建有温度的智能世界

更多推荐