-1
我正在填充表格的元組名單上:如何找到具有特定值的所有元組?
tups = [(1, 2, 4.56), (2, 1, 1.23), (1, 3, 2.776), ...]
,我想執行兩個操作。
首先是要找到開始用數字Ñ的所有元組,例如:
def starting_with(n, tups):
'''Find all tuples with tups that are of the form (n, _, _).'''
# ...
而第二個是相反的,找到的Ñ第二值的所有元組:
def middle_with(n, tups):
'''Find all tuples with tups that are of the form (_, n, _).'''
# ...
從某種意義上說,在元組列表上進行模式匹配。我如何在Python中做到這一點?
哦,真不錯,謝謝! – sdasdadas
有趣的替代... –
但我認爲第一種方法會更快 –