#分别在列表、字符串、元组、字典和集合中使用。#in 在则返回 True , 不在则返回 False
a = 'a'd= 'd'lst= ['a','b','c']#判断 a 是否在 lst 中
print(a inlst)#True#判断 d 是否在 lst 中
print(d inlst)#False
a= 'a'd= 'd'strs= 'abc'
#判断 a 是否在 strs 中
print(a instrs)#True#判断 d 是否在 strs 中
print(d instrs)#False
a= 'a'd= 'd'tup= ('a','b','c')#判断 a 是否在 tup 中
print(a intup)#True#判断 d 是否在 tup 中
print(d intup)#False
a= 'a'd= 'd'dic= {'a':123,'b':456,'c':789}#判断 a 是否在 dic 中#字典主要是看,是否存在该键
print(a indic)#True#判断 d 是否在 s 中
print(d indic)#False
a= 'a'd= 'd's= {'a','b','c'}#判断 a 是否在 s 中
print(a ins)#True#判断 d 是否在 s 中
print(d ins)#False
#not in , 不在返回 True ,在返回 False#分别在列表、字符串、元组、字典和集合中使用。
a = 'a'd= 'd'lst= ['a','b','c']#判断 a 是否不在 lst 中
print(a not inlst)#False#判断 d 是否在 lst 中
print(d not inlst)#True
a= 'a'd= 'd'strs= 'abc'
#判断 a 是否不在 strs 中
print(a not instrs)#False#判断 d 是否不在 strs 中
print(d not instrs)#True
a= 'a'd= 'd'tup= ('a','b','c')#判断 a 是否不在 tup 中
print(a not intup)#False#判断 d 是否不在 tup 中
print(d not intup)#True
a= 'a'd= 'd'dic= {'a':123,'b':456,'c':789}#字典主要是看,是否存在该键
#判断 a 是否不在 dic 中
print(a not indic)#False#判断 d 是否不在 dic 中
print(d not indic)#True
a= 'a'd= 'd's= {'a','b','c'}#判断 a 是否不在 s 中
print(a not ins)#False#判断 d 是否不在 s 中
print(d not ins)#True