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

Резултати

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

Пребарај: #childmarriage

当前筛选 #childmarriage清除筛选
Google Facts™ [ ️@googlefactss🌎]

@googlefactss · Post #40165 · 22.11.2025 г., 23:01

Every year, 12 million girls marry before the age of 18. Child marriage happens across countries, cultures and religions. 💔🌍 Check [here] to see how your nation does. The results are shocking. @googlefactss #ChildMarriage#HumanRights#GlobalIssue#EndChildMarriage

Google Facts™ [ ️@googlefactss🌎]

@googlefactss · Post #40144 · 20.11.2025 г., 23:26

Niger has the highest child marriage rate in the world among girls, with more than three-fourths married before age 18 and nearly 30 percent before 15. The Central African Republic, Chad, and Mali follow with rates from 61 to 54 percent. This issue is globally spread, particularly in African countries. 💔🚫💍🌍 [Read more] @googlefactss #ChildMarriage#Niger#HumanRights#Africa#GlobalIssue

Google Facts™ [ ️@googlefactss🌎]

@googlefactss · Post #40137 · 20.11.2025 г., 03:02

Child marriage remains legal in 34 U.S. states, with some setting no minimum age. Over 314,000 minors were married in the last two decades, mostly girls to adult men. Efforts to ban it face ongoing political resistance. 🚨👧💍 The highest rates of child marriage in the United States are found in Texas, Florida, Kentucky, North Carolina and Alabama. [Read more] @googlefactss #ChildMarriage#HumanRights#USLaw#GenderEquality#SocialJustice#ChildrensRights