对于列表和集合进行成员资格测试,可以使用Python中的in
关键字。in
关键字可以用于检查一个元素是否在列表、元组、字符串或集合中。
以下是一些示例:
my_list = [1, 2, 3, 4, 5]
if 3 in my_list:
print("3 is in the list")
else:
print("3 is not in the list")
my_set = {1, 2, 3, 4, 5}
if 3 in my_set:
print("3 is in the set")
else:
print("3 is not in the set")
my_string = "Hello, world!"
if "world" in my_string:
print("'world' is in the string")
else:
print("'world' is not in the string")
my_tuple = (1, 2, 3, 4, 5)
if 3 in my_tuple:
print("3 is in the tuple")
else:
print("3 is not in the tuple")
在这些示例中,我们使用in
关键字来检查元素是否在列表、集合、字符串或元组中。如果元素存在,则返回True
,否则返回False
。
领取专属 10元无门槛券
手把手带您无忧上云