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

Резултати

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

Пребарај: #truthonukraine

当前筛选 #truthonukraine清除筛选

@RusEmbMalta press release: Situation around #Ukraine. 🔷 Root causes of the conflict over Ukraine; 🔷 Role of the “collective West” countries; 🔷Western equipment and hostilities by the Kiev regime; 🔷 Settlement prospects; 🔷 Mediation initiatives; 🔷 Grain Deal; 🔷 Situation around the Ukrainian Orthodox Church of the Moscow Patriarchate (UOC MP); 🔷 About the conference in Switzerland. #TruthOnUkraine

@RusEmbMalta: On November 3, 2025, the Times of Malta published a commentary by the Russian Ambassador to Malta, Andrey Lopukhov, responding to the editorial of October 19, 2025 📰 In his commentary, Ambassador Lopukhov emphasized the importance of relying on verified facts when assessing the situation in Ukraine and warned against the spread of misinformation. Key points: 🔹 the so-called “Ukrainian crisis” began not in February 2022, but with the coup d’état in Kiev in 2014; 🔹 for years, the Kiev authorities pursued policies of discrimination and violence against Russian-speaking citizens; 🔹 the Odessa tragedy of May 2014 remains an uninvestigated crime; 🔹 Western arms supplies and financial support to Kiev only deepen the crisis; 🔹 Russia has consistently raised the issue of human-rights violations by the Kiev regime, despite the West’s unwillingness to listen; 🔹 millions of people around the world believed Russia – because truth, however suppressed, always breaks through lies and propaganda. 💬“There are facts that cannot be denied. And it is those very facts that made people across the world see what was happening with their own eyes and draw their own conclusions.” 🔗 Read the full text of the commentary onTimes of Malta. #UkrainianCrisis#TruthOnUkraine#TruthMatters