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

Пребарај: #xguard

当前筛选 #xguard清除筛选
bjjfanaticsinstructionals

@bjjfanaticsinstructionals · Post #1817 · 24.05.2025 г., 00:04

🔥NEW RELEASE🔥 😁X Guard Masterclass 2.0 By Tainan Dalpra😁 ➡️X Guard 2.0, the second installment to Tainan's X Guard system, builds on the framework with updated details, introduces new positions, and explores variations and adjustments to the X Guard. ➡️Positions and topics for the series include: from the open guard using the cross sleeve, the 2-on-1 control, from the reverse de la riva, incorporating the leg drag, finishing with the waiter sweep, and more. ➡️In this series, Tainan pulls inspiration from Rafael Mendes' leg drag, and focuses a lot on incorporating the leg drag technique and position into his X Guard system. $200😍$19.99😍 ❗️Channel Info and FAQ (MUST CHECK BEFORE BUY)❗️ 📱Payment: 📱📱📱 💰Submeta FOR FREE 🌈UFC Picks 👑MasterClass ✈️@bjjfanaticsinstructionals #TainanDalpra#Guard#XGuard#AOJ 💁‍♀️Buy 💁‍♀️

bjjfanaticsinstructionals

@bjjfanaticsinstructionals · Post #1869 · 15.10.2025 г., 17:52

🔥NEW RELEASE🔥 😁X Guard Evolution: Set Ups, Control, Sweeps,Back Attacks And Submissions By Andy Murasaki😁 ➡️Unlock the power of the X Guard with world-class instruction from Andy Murasaki, one of the most accomplished competitors of his generation and a lifelong black belt under the legendary Andre Galvão. ➡️Whether you're brand new to the position or looking to refine your existing arsenal, X Guard Evolution delivers a complete gameplan — from sweeps and transitions to devastating back takes and submissions. $197😍$19.99😍 ❗️Channel Info and FAQ (MUST CHECK BEFORE BUY)❗️ 📱Payment: 📱📱📱 💰Submeta FOR FREE 🌈UFC Picks 👑MasterClass ✈️@bjjfanaticsinstructionals #AndyMurasaki#XGuard#Gi#AtosBJJ 💁‍♀️Buy 💁‍♀️