📜  Python – 范围元组中的元素索引

📅  最后修改于: 2022-05-13 01:55:52.371000             🧑  作者: Mango

Python – 范围元组中的元素索引

有时,在处理Python数据时,我们可能会遇到一个问题,即我们需要在列表中的连续等距元组中找到元素位置。这个问题在许多领域都有应用,包括日间编程和竞争性编程。让我们讨论可以执行此任务的某些方式。

方法#1:使用循环
这是可以执行此任务的蛮力方式。在此,我们迭代列表中的所有元素,然后使用运算符,找到所需元素的位置。

Python3
# Python3 code to demonstrate working of
# Element Index in Range Tuples
# Using loop
 
# initializing list
test_list = [(0, 10), (11, 20), (21, 30), (31, 40), (41, 50)]
 
# printing original list
print("The original list is : " + str(test_list))
 
# initializing Element
K = 37
 
# Element Index in Range Tuples
# Using loop
res = None
for idx, ele in enumerate(test_list):
    if K >= ele[0] and K <= ele[1]:
        res = idx
         
# printing result
print("The position of element : " + str(res))


Python3
# Python3 code to demonstrate working of
# Element Index in Range Tuples
# Using formula
 
# initializing list
test_list = [(0, 10), (11, 20), (21, 30), (31, 40), (41, 50)]
 
# printing original list
print("The original list is : " + str(test_list))
 
# initializing Element
K = 37
 
# Element Index in Range Tuples
# Using formula
res = (K // (test_list[0][1] - test_list[0][0]))
         
# printing result
print("The position of element : " + str(res))


输出 :
The original list is : [(0, 10), (11, 20), (21, 30), (31, 40), (41, 50)]
The position of element : 3


方法#2:使用公式
元素位置也可以不使用循环进行划分,但要使用范围大小的元素划分来提取相同的位置,因为它是一致的。

Python3

# Python3 code to demonstrate working of
# Element Index in Range Tuples
# Using formula
 
# initializing list
test_list = [(0, 10), (11, 20), (21, 30), (31, 40), (41, 50)]
 
# printing original list
print("The original list is : " + str(test_list))
 
# initializing Element
K = 37
 
# Element Index in Range Tuples
# Using formula
res = (K // (test_list[0][1] - test_list[0][0]))
         
# printing result
print("The position of element : " + str(res))
输出 :
The original list is : [(0, 10), (11, 20), (21, 30), (31, 40), (41, 50)]
The position of element : 3