在 python 中,我们如何执行条件操作列表,其中列表的项目或元素是关键字
In python ,how can we perform conditional operations list where items or elements of list are keywords
tup=(1,'2',3.3,(1,4))
lst=列表(地图(类型,tup))
打印(lst)
最后一项:
如果(项目==class海峡)
打印(“成功”)
这里“class str”是关键字但是也是lst的一项,任何可能的语法对关键字进行条件操作
也许这就是你想要的
tup=(1,'2',3.3,(1,4)) #this is my tuple
lst=list(map(type,tup)) #It stores the data types of elements of tuple in a list
print(lst) #prints the list
for item in lst:
if item is str: # here "class str" is keyword but it is a item of lst,is there any possible syntax
print("succesful")
tup=(1,'2',3.3,(1,4))
lst=列表(地图(类型,tup))
打印(lst)
最后一项:
如果(项目==class海峡)
打印(“成功”)
这里“class str”是关键字但是也是lst的一项,任何可能的语法对关键字进行条件操作
也许这就是你想要的
tup=(1,'2',3.3,(1,4)) #this is my tuple
lst=list(map(type,tup)) #It stores the data types of elements of tuple in a list
print(lst) #prints the list
for item in lst:
if item is str: # here "class str" is keyword but it is a item of lst,is there any possible syntax
print("succesful")