Получить соответствующий элемент из выражения генератора
Я написал if
условие с выражением генератора.
self.keyword_list = ['Buzz', 'Heard on the street', 'familiar with the development', 'familiar with the matter', 'Sources' ,'source', 'Anonymous', 'anonymity', 'Rumour', 'Scam', 'Fraud', 'In talks', 'Likely to', 'Cancel', 'May', 'Plans to', 'Raids' ,'raid', 'search', 'Delisting', 'delist', 'Block', 'Exit', 'Cheating', 'Scouts', 'scouting', 'Default', 'defaulted', 'defaulter', 'Calls off', 'Lease out', 'Pick up', 'delay', 'arrest', 'arrested', 'inks', 'in race', 'enters race', 'mull', 'consider', 'final stage', 'final deal', 'eye', 'eyes', 'probe', 'vie for', 'detects', 'allege', 'alleges', 'alleged', 'fabricated', 'inspection', 'inspected', 'to monetise', 'cancellation', 'control', 'pact', 'warning', 'IT scanner', 'Speculative', 'Divest', 'Buzz', 'Heard on the street', 'familiar with the development', 'familiar with the matter', 'Sources', 'source', 'Anonymous', 'anonymity', 'Rumour', 'Scam', 'Fraud', 'In talks', 'Likely to', 'Cancel', 'May', 'Plans to ', 'Raids', 'raid', 'search', 'Delisting', 'delist', 'Block', 'Exit', 'Cheating', 'Scouts','scouting', 'Default', 'defaulted', 'defaulter', 'Calls off', 'Lease out', 'Pick up', 'delay', 'arrest', 'arrested', 'inks', 'in race', 'enters race', 'mull', 'consider', 'final stage', 'final deal', 'eye', 'eyes', 'probe', 'vie for', 'detects', 'allege', 'alleges', 'alleged', 'fabricated', 'inspection', 'inspected', 'monetise', 'cancellation', 'control', 'pact', 'warning', 'IT scanner', 'Speculative', 'Divest']
if any(re.search(item.lower(), record['title'].lower()+' '+record['description'].lower()) for item in self.keyword_list):
#for which value of item condition became true?
#print item does not work
print record
Если условие истинно, то я хочу напечатать соответствующее имя элемента. Как мне это получить?
1 ответ
Решение
Не использовать any()
и измените выражение вашего генератора на использование фильтра (переместите тест до конца), затем используйте next()
чтобы получить первый матч:
matches = (item for item in self.keyword_list if re.search(item.lower(), record['title'].lower() + ' ' + record['description'].lower()))
first_match = next(matches, None)
if first_match is not None:
print record
Или вы можете просто использовать for
Цикл и вырваться после первого матча:
for item in self.keyword_list:
if re.search(item.lower(), record['title'].lower() + ' ' + record['description'].lower()):
print record
break
Вы можете дополнительно очистить любой из этих вариантов, предварительно вычислив регулярное выражение для сопоставления и используя re.IGNORECASE
пометьте, чтобы вам не приходилось все в нижнем регистре:
pattern = re.compile(
'{} {}'.format(record['title'], record['description']),
flags=re.IGNORECASE)
matches = (item for item in self.keyword_list if pattern.search(item))
first_match = next(matches, None)
if first_match is not None:
print record
или же
pattern = re.compile(
'{} {}'.format(record['title'], record['description']),
flags=re.IGNORECASE)
for item in self.keyword_list:
if pattern.search(item):
print record
break