TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #65 · 8 апр.

Небольшой трик с регулярными выражениями который редко вижу в чужом коде. Допустим, вам нужно распарсить простой текст и вытащить оттуда пары имя+телефон. Вернуть всё это надо в виде списка словарей. Возьмем очень простой пример текста. >>> text = ''' >>> Alex:8999123456 >>> Mike:+799987654 >>> Oleg:+344456789 >>> ''' Соответственно, для выделения нужных элементов будем использовать группы. Получится такой паттерн: (\w+):([\d+]+) Как мы будем формировать словарь из найденных групп? >>> import re >>> results = [] >>> for match in re.finditer(r"(\w+):([\d+]+)", text): >>> results.append({ >>> "name": match.group(1), >>> "phone": match.group(2) >>> }) >>> print(results) [{'name': 'Alex', 'phone': '8999123456'}, ...] Можно немного сократить запись используя zip >>> results = [] >>> for match in re.finditer(r"(\w+):([\d+]+)", text): >>> results.append(dict(zip(['name', 'phone'], match.groups()))) Но есть способ лучше! Это именованные группы в regex. Можно в паттерне указать имя группы и результат сразу забрать в виде словаря. >>> for match in re.finditer(r"(?P<name>\w+):(?P<phone>[\d+]+)", text): >>> results.append(match.groupdict()) То есть всё что я сделал, это добавил в начале группы (внутри сбокочек) такую запись: (?P<group-name>...) Теперь найденная группа имеет имя и можно обратиться к ней как к элементу списка >>> name = match['name'] Либо забрать сразу весь словарь методом groupdict() >>> match.groupdict() #tricks#regex

Резултати

Пронајдени 1 слични објави

Пребарај: #sawt

当前筛选 #sawt清除筛选
Addis Standard

@addisstandardeng · Post #21214 · 27.01.2026 г., 15:45

News: Salsay Weyane raises concerns over election conditions as #NEBE presses Interim Administration on preparations Salsay Weyane #Tigray (#SAWT) has raised concerns over the feasibility of holding elections in Tigray under current conditions, warning that key prerequisites for a credible electoral process remain unmet, even as the National Election Board of Ethiopia (NEBE) continues to push ahead with preparations for the seventh national general election scheduled for June 2026. In a press release issued on yesterday, the party said the security situation in Tigray remains unconducive to free and fair elections, citing the absence of a fully functional civil administration capable of facilitating the electoral process. SAWT also said that significant parts of the region remain under the control of what it described as illegal authorities, while millions of people displaced from .... https://www.facebook.com/AddisstandardEng/posts/pfbid0U3XZe5RbDTaESQgC3BfL9rEh5cyi9XiSpXRVcUfgyJ9oH2rmcZ5vCMDXfDixjTCCl