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、字符串、列表、元组、字典的方法请查看下面的相关链接
相关文章
Python类方法__init__和__del__构造、析构过程分析
这篇文章主要介绍了Python类方法__init__和__del__构造、析构过程分析,本文分析了什么时候构造、什么时候析构、成员变量如何处理、Python中的共享成员函数如何访问等问题,需要的朋友可以参考下2015-03-03Python 中 AttributeError: ‘NoneType‘ obje
Python “AttributeError: ‘NoneType’ object has no attribute” 发生在我们尝试访问 None 值的属性时,例如 来自不返回任何内容的函数的赋值, 要解决该错误,请在访问属性之前更正分配,本文通过示例给大家说明错误是如何发生的,感兴趣的朋友一起看看吧2023-08-08Python 、Pycharm、Anaconda三者的区别与联系、安装过程及注意事项
这篇文章主要介绍了Python,Pycharm,Anaconda三者的区别与联系、安装过程及其注意事项,本文给大家介绍的非常详细,具有一定的参考借鉴价值,需要的朋友可以参考下2019-10-10
最新评论