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

Резултати

Пронајдени 23 слични објави

Пребарај: #quotex

当前筛选 #quotex清除筛选
SS7 TRADER

@ss7trader · Post #30790 · 11.05.2026 г., 16:18

⚙100% NON-REPAINT. 0% GUESSING.⚙ 👉Look at these clean entries from today's session with Pro Thunder V12. Once the signal appears, it STAYS. No shifting, no disappearing, just pure accuracy. 👉Neural Network Logic: Our AI scans thousands of data points to find the highest probability reversal. 📈Result: See the screenshots for the clinical precision. Stop losing money on lagging indicators. It’s time to upgrade to the V12 standard.👑 👇 GET YOUR COPY NOW 👇 👉CLICK TO GET V12 NOW! #MT5#Indicator#binaryindicator#pocketoption#quotex#бинарныеопционы#бинарныеопционы

SS7 TRADER

@ss7trader · Post #30745 · 06.05.2026 г., 12:09

⚡️V12 STRIKES AGAIN! ⚡️ Another Perfect Signal on EUR/GBP. 👉 Neural Confirmed 👉 100% Non-Repaint 👉 Pure Profit Stop losing to lagging indicators. Join the ss7trader revolution today. 👑 👇GET ACCESS 👇 https://ss7trader.com/product/pro-thunder-v12/ #MT5#Indicator#binaryindicator#pocketoption#quotex#бинарныеопционы#бинарныеопционы

SS7 TRADER

@ss7trader · Post #30693 · 29.04.2026 г., 14:49

⚡️V12 STRIKES AGAIN! ⚡️ Another Perfect Signal on GBP/JPY. 👉 Neural Confirmed 👉 100% Non-Repaint 👉 Pure Profit Stop losing to lagging indicators. Join the ss7trader revolution today. 👑 👇GET ACCESS 👇 https://ss7trader.com/product/pro-thunder-v12/ #MT5#Indicator#binaryindicator#pocketoption#quotex#бинарныеопционы#бинарныеопционы

SS7 TRADER

@ss7trader · Post #30643 · 27.04.2026 г., 12:36

⚙100% NON-REPAINT. 0% GUESSING.⚙ 👉Look at these clean entries from today's session with Pro Thunder V12. Once the signal appears, it STAYS. No shifting, no disappearing, just pure accuracy. 👉Neural Network Logic: Our AI scans thousands of data points to find the highest probability reversal. 📈Result: See the screenshots for the clinical precision. Stop losing money on lagging indicators. It’s time to upgrade to the V12 standard.👑 👇 GET YOUR COPY NOW 👇 👉CLICK TO GET V12 NOW! #MT5#Indicator#binaryindicator#pocketoption#quotex#бинарныеопционы#бинарныеопционы

SS7 TRADER

@ss7trader · Post #30610 · 24.04.2026 г., 12:05

⚙100% NON-REPAINT. 0% GUESSING.⚙ 👉Look at these clean entries from today's session with Pro Thunder V12. Once the signal appears, it STAYS. No shifting, no disappearing, just pure accuracy. 👉Neural Network Logic: Our AI scans thousands of data points to find the highest probability reversal. 📈Result: See the screenshots for the clinical precision. Stop losing money on lagging indicators. It’s time to upgrade to the V12 standard.👑 👇 GET YOUR COPY NOW 👇 👉CLICK TO GET V12 NOW! #MT5#Indicator#binaryindicator#pocketoption#quotex#бинарныеопционы#бинарныеопционы

12
ПретходнаСтраница 1 од 2Следна