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

Пребарај: #cnht

当前筛选 #cnht清除筛选
CryptoBull_360™

@cryptobull_360 · Post #48461 · 23.02.2026 г., 01:02

⚠️ The main events of the weekend: ⚠️#Tradewars Trump signed a decree on imposing additional 15% tariffs on all countries 📉#IOTX Hack IoTeX 📉 🕯#RAVE are actively withdrawing from Bitget 🚀 🙅‍♂️ Tether ceases support for the yuan stablecoin #CNHT 🗣 Robert Kiyosaki announced that he bought 1 BTC at a price of 67,000$ ✅ It's nice that the Jupiter community proposed to stop the emission of #JUP for team members this year, as well as to stop holding Jupuary 🤖 The AI agent Lobstar sent 5.2% of the total supply of #LOBSTAR (~270 thousand $) to the person who asked for it in the comments on X (he asked for 4 SOL) 🖇#ICP DFINITY Foundation updates the tokenomics of the internet Computer #Binance Futures lists #OPN 📊 Charts: - The Bloomberg index of economic and geopolitical uncertainty since 1990 is at record highs - Stablecoin reserves on crypto exchanges fell by 14% over the past three months 💫Events for tomorrow: 🔓 Unlocks: Spacecoin (#SPACE) - 3.75% (7.92 million $) 🙅‍♂️#NFT The NFT platform Gemini Nifty Gateway will close 🙅‍♂️#TT ThunderCore will stop the operation of the TT Wallet wallet 🖼#DOLZ DOLZ will complete the auction for the NFT collection "Oriental Desire" by Veronica Leal 🙋‍♂️#IMX Immutable launches the open beta testing of StoneHold 🙋‍♂️#ACH Alchemy Pay will launch the Alchemy Chain in the test network 🇺🇸#NEAR The start of NEARCON 2026 in San Francisco