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

Пребарај: #yuan

当前筛选 #yuan清除筛选
International News

@intnewsagency · Post #8569 · 17.03.2026 г., 15:24

Chinese Yuan Surpasses 12 Rubles for the First Time Since September 2025 Today, the Chinese yuan reached 12.002 rubles, hitting its highest level since September 11, 2025. This marks an increase of 18.2 kopecks from the previous close and 25.79 kopecks above the official rate. The rise reflects yuan’s strengthening amid growing Russia-China cooperation and stabilizing global markets. Experts highlight the yuan’s resilience as crucial for bilateral economic ties. #Russia#China#Yuan#Currency#Finance The main news of Russia and the world ishere.

International News

@intnewsagency · Post #9354 · 23.04.2026 г., 13:29

The ruble declined following the Ministry of Finance’s resumption of currency and gold operations under the budget rule starting in May. As of 15:46 MSK, the Chinese yuan rose to 11.095 rubles, up 1.3% from the previous close and 10.19 kopecks above the official rate. These shifts indicate market caution amid new government financial actions. #Ruble#MinFin#Currency#Yuan#Finance The main news of Russia and the world ishere.

Venture Village Wall 🦄

@venturevillagewall · Post #4056 · 03.02.2025 г., 10:00

China Proposes Trade Deal Restoration China aims to restore the "Phase 1" trade deal with the U.S. to resolve tariff tensions. Key aspects include commitments to avoid yuan devaluation, increase U.S. investments, and reduce fentanyl precursor exports. Details available in the full article. #China#Trade#Tariffs#US#Economy#Phase1#Fentanyl#Yuan#Investments#WSJ