【2021-07-26学习笔记】python中的in与not in运算

一.in 与not in的理解:

python中的in与not in可以理解为判断是否包含,判断结果返回一个布尔值

in:包含

not in :不包含

二.语法形式:

x in y,其中y可以是列表(list)、字典(dict)、字符串(str)、元祖(tuple)、集合(set)等。

三.实例

1.以列表为例

l=["name","age","gender"]
test1= "name"  in l
test2="age" not in l
print(test1)
print(test2)

运行结果:

True
False

2.以字典为例

d={
    "name":"guolang",
    "age":18,
    "gender":"female"
}
test1= "name"  in d
test2="age" not in d
print(test1)
print(test2)

运行结果:

True
False

3.已字符串为例

str="nameagegender"
test1= "name" in str
test2&#

你可能感兴趣的:(python)