how can I search a list of tuples if I only know 1 element of any tuple in the list?
mockup example (this doesn't work):
tuplelist = [('cat', 'dog'), ('hello', 'goodbye'), ('pretty', 'ugly')]
matchlist = []
searchstring = 'goodbye'
if (*, searchstring) in tuplelist:
print "match was found"
matchlist.append(tuplelist[#index of match])
the asterix would be where I want to put the wildcard
I know I could use:
for i in range (len(tuplelist)):
if tuplelist[i][1]==searchstring:
matchlist.append(tuplelist[i])
print "match was found"
but the problem is that I need to run a specific function only once if no match is found.
maybe I could make a counter that increments when a match is found and add something like this to the loop.
if i==len(tuplelist) and matchcounter==0:
#do something
print "no match was found"
But that's kind of ugly and confusing I think and I'm sure there's some cleaner way to do this :P