{site_name}

{site_name}

🌜 搜索

Python成员检测运算用于确定一个值是否包含在一个容器中

Python 𝄐 0
python中的成员运算符用于判断什么,python检测类型,python成员资格,python中的成员运算符用于判断指定序列,python检验,python测验7
Python成员检测运算用于确定一个值是否包含在一个容器中。使用in和not in两个关键字来执行这种操作。如果指定的值包含在容器中,则返回True;否则返回False。

以下是各种数据类型中Python成员检测运算的用法示例:

1. 列表(list):


fruits = ['apple', 'banana', 'cherry']
print('banana' in fruits) # True
print('orange' in fruits) # False
print('orange' not in fruits) # True


2. 元组(tuple):


numbers = (1, 2, 3)
print(2 in numbers) # True
print(4 not in numbers) # True


3. 字符串(string):


text = 'Hello, world!'
print('world' in text) # True
print('python' not in text) # True


4. 字典(dictionary):


person = {'name': 'John', 'age': 25}
print('name' in person) # True
print('address' not in person) # True