python判断变量是否为int字符串列表元组字典等方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python判断变量是否为int字符串列表元组字典等方法相关的知识,希望对你有一定的参考价值。
在实际写程序中,经常要对变量类型进行判断,除了用type(变量)这种方法外,还可以用isinstance方法判断:
#!/usr/bin/env python 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"
本文出自 “苦咖啡's运维之路” 博客,请务必保留此出处http://alsww.blog.51cto.com/2001924/1787848
以上是关于python判断变量是否为int字符串列表元组字典等方法的主要内容,如果未能解决你的问题,请参考以下文章