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 слични објави

Пребарај: #costofliving

当前筛选 #costofliving清除筛选
America 🇺🇸 News & Politics

@America · Post #10456 · 04.04.2026 г., 16:07

📰🇺🇸AMERICAN FAMILIES HIT BY WAR ECONOMY CRISIS 🔹 Gas prices surge to $6.50/gallon nationwide as Iran war disrupts oil supply 🏃‍♂️ 🔹 Grocery inflation hits 18% in March, forcing families to food banks 🛒 🔹 Unemployment claims spike 40% as defense contractors lay off workers 📊 🔹 Credit card debt reaches record $2.3 trillion amid cost-of-living crisis 💳 🔹 Student loan payments resume while federal aid programs face cuts ⏰ 🔹 Housing market collapse: mortgage rates hit 12%, sales down 60% 🏠 Middle class getting crushed while Pentagon gets $1.5T budget 😤💸 #economy#inflation#CostOfLiving @america

gov.sg

@Govsg · Post #2221 · 03.06.2024 г., 04:15

What are some ways to reduce household expenses? Finance writer Dawn from ‘SG Budget Babe’ shares some of her top cost-saving tips. ➡️ Read more: go.gov.sg/costofliving-youknowornot-2 #YouKnowOrNot#CostofLiving#budgeting#adulting Drop us a 👍🏻 or 🤩 if you like her tips!

Freedom Flotilla Coalition

@FFC_official_channel · Post #219 · 25.08.2024 г., 10:11

UN experts warned months ago that Israel is deliberately starving Palestinians, and that famine is rapidly spreading across Gaza, and yet Israel continues with impunity and is sent billions of dollars by the US. Children, infants, pregnant women, people living with disabilities, the elderly and those with chronic illnesses are the most at risk of severe malnutrition, illness, and death. Mobilize today, and continue boycotting products and companies that support these war crimes. #freegaza#freepalestine#endtheoccupation#humanitarianaid#costofliving#northgaza#gazacity#freedomflotilla#ffc#breakthesiege#endtheblockade #BDS * prices are in US dollars