python判断变量是否为int、字符串、列表、元组、字典的方法详解
更新时间:2020年02月13日 08:45:17 作者:猪笨是念来过倒
这篇文章主要介绍了python判断变量是否为int、字符串、列表、元组、字典的方法详解,需要的朋友可以参考下
在实际写程序中,经常要对变量类型进行判断,除了用type(变量)这种方法外,还可以用isinstance方法判断:
a = 1
b = [1,2,3,4]
c = (1,2,3,4)
d = {'a':1, 'b':2, 'c':3}
e = "abc"
if isinstance(a,int):
print ("a is int")
else:
print ("a is not int")
if isinstance(b,list):
print ("b is list")
else:
print ("b is not list")
if isinstance(c,tuple):
print ("c is tuple")
else:
print ("c is not tuple")
if isinstance(d,dict):
print ("d is dict")
else:
print ("d is not dict")
if isinstance(e,str):
print ("d is str")
else:
print ("d is not str")
更多关于python判断变量是否为int、字符串、列表、元组、字典的方法请查看下面的相关链接
相关文章
np.newaxis 实现为 numpy.ndarray(多维数组)增加一个轴
今天小编就为大家分享一篇np.newaxis 实现为 numpy.ndarray(多维数组)增加一个轴,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧2019-11-11
Python判断字符串是否为字母或者数字(浮点数)的多种方法
本文给大家带来三种方法基于Python判断字符串是否为字母或者数字(浮点数),非常不错,具有一定的参考借鉴价值,需要的朋友可以参考下2018-08-08


最新评论