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

Пребарај: #ihs

当前筛选 #ihs清除筛选
Crypto M - Crypto News

@CryptoM · Post #64907 · 10.04.2026 г., 08:51

🚀 Austrian Economic Institutes Lower Growth Forecasts Amid Iran Conflict Impact On April 10, two major Austrian economic research institutes announced that the ongoing conflict in Iran is threatening Austria's economic recovery in 2026. According to Jin10, the Institute for Advanced Studies (IHS) has revised its growth forecast for Austria's economy in 2026 down to 0.5% and in 2027 to 0.8%, from previous estimates of 1.0% and 1.1%, respectively. The revision is attributed to soaring energy prices and increased uncertainty. Similarly, the Austrian Institute of Economic Research (WIFO) has adjusted its GDP forecast, projecting growth between 0.2% and 1.1% for 2026, and between 0.4% and 1.5% for 2027, down from earlier predictions of 1.2% and 1.4%. WIFO noted that the current uncertain international environment complicates forecasting efforts. WIFO also anticipates Austria's inflation rate to range between 2.5% and 4.1% in 2026, and between 2.2% and 3.5% in 2027. Meanwhile, IHS forecasts this year's inflation rate at 2.9%, with a decrease to 2.4% in 2027. #Austria#economicforecast#Iranconflict#energyprices#GDPgrowth#inflation#IHS#WIFO#economicrecovery#2026growth#2027forecast#internationaluncertainty