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

Пребарај: #energyregulation

当前筛选 #energyregulation清除筛选
anre.md

@anre_md · Post #939 · 26.06.2024 г., 09:38

Sub inițiativa Agenției Statelor Unite pentru Dezvoltare Internațională ( USAID - US Agency for International Development ) și Asociația Națională a Comisiilor de Reglementare a Utilităților Publice din SUA ( National Association of Regulatory Utility Commissioners, NARUC), în Skopje, Macedonia de Nord se desfășoară cea de-a doua ediție a programului de formare în leadership pentru femeile aflate la mijlocul carierei Advancing Women Leaders in Energy. Pentru detalii accesați următorul link: https://t.ly/I01Mp #EnergyRegulation#genderequality#careerdevelopment#leadership

Crypto M - Crypto News

@CryptoM · Post #64711 · 09.04.2026 г., 15:34

🚀 Maine Set to Implement Statewide Ban on Data Center Construction Until 2027 Maine is poised to become the first U.S. state to prohibit the construction of data centers statewide, following the approval of a legislative bill this week. According to Foresight News, the measure, which aims to halt data center development until November 2027, is expected to receive final approval in the coming days. The legislation also establishes a committee to propose a regulatory framework for data centers to prevent potential increases in energy prices or other issues for Maine residents. Despite bipartisan support for the bill, it has faced strong opposition from technology groups and businesses. Critics argue that even a temporary delay in construction could hinder the state's progress. #Maine#DataCenterBan#DataCenters#EnergyPrices#TechnologyOpposition#Legislation#BipartisanSupport#EnergyRegulation#ConstructionDelay