码迷,mamicode.com
首页 > 编程语言 > 详细

python判断变量是否为int、字符串、列表、元组、字典等方法

时间:2016-06-11 07:09:36      阅读:387      评论:0      收藏:0      [点我收藏+]

标签:变量   python   类型判断   

在实际写程序中,经常要对变量类型进行判断,除了用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、字符串、列表、元组、字典等方法

标签:变量   python   类型判断   

原文地址:http://alsww.blog.51cto.com/2001924/1787848

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!