计数元素直到Python中的第一个元组

当需要对直到第一个元组的元素进行计数时,可以使用简单的循环,“ isinstance”方法和“ enumerate”方法。

以下是相同的演示-

示例

my_tuple_1 = (7, 8, 11, 0 ,(3, 4, 3), (2, 22))

print ("The tuple is : " )
print(my_tuple_1)

for count, elem in enumerate(my_tuple_1):
   if isinstance(elem, tuple):
      break
print("The number of elements up to the first tuple are : ")
print(count)
输出结果
The tuple is :
(7, 8, 11, 0, (3, 4, 3), (2, 22))
The number of elements up to the first tuple are :
4

解释

  • 定义了一个嵌套的元组并将其显示在控制台上。

  • 元组被枚举,并遍历。

  • isinstance方法用于检查元组中的元素是否属于某种类型。

  • 由于使用了“枚举”,因此该结果存储在计数器中。

  • 它在控制台上显示为输出。