检查Python中的元组中是否存在元素
当需要检查元组中是否存在元素时,可以使用一个简单的循环。元组是不可变的数据类型。这意味着,一旦定义的值就不能通过访问它们的索引元素来更改。如果我们尝试更改元素,则会导致错误。它们很重要,因为它们确保只读访问。
以下是相同的演示-
示例
my_tuple_1 = (23, 45, 12, 56, 78, 0) print("Thefirsttupleis: ") print(my_tuple_1) N = 12 print("The value of 'N' has been initialized") my_result = False for elem in my_tuple_1 : if N == elem : my_result = True break print("Does the tuple contain the value mentioned ?") print(my_result)输出结果
Thefirsttupleis: (23, 45, 12, 56, 78, 0) The value of 'N' has been initialized Does the tuple contain the value mentioned ? True
解释
元组已定义,并显示在控制台上。
“N”的值被初始化。
循环遍历,如果元组中存在元素“N”,则将值分配为“True”。
该值分配给结果。
它在控制台上显示为输出。