网络编程
位置:首页>> 网络编程>> Python编程>> python判断变量是否为int、字符串、列表、元组、字典的方法详解

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

作者:猪笨是念来过倒  发布时间:2022-09-28 05:11:57 

标签:python,判断变量,isinstance

在实际写程序中,经常要对变量类型进行判断,除了用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")

来源:https://blog.csdn.net/liao392781/article/details/90296229

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com