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

Пребарај: #seasonend

当前筛选 #seasonend清除筛选
MoonPlay

@moonplay_official · Post #73 · 22.07.2024 г., 17:50

🔔Season 2 StartsTOMORROW!🔔 Hey Space Cadets! The countdown to the end of Season 1 is on ⏳, and Season 2 kicks off tomorrow! It's your last chance to push your limits and finish the season as strong as you can. Every mission, every upgrade counts as we approach the final snapshot by 12 AM UTC. 👉 SEASON 2 START: 12 AM UTC, JULY 23 In the chronicles of MoonPlay 📖, your efforts this season will be remembered as the foundation of our lunar conquest. From the humble beginnings of your first ship to the mighty vessels 🚀 you command now, you've paved the way for future explorers. This is the moment to show what you're made of. Don’t waste any minute - rally your crew, complete those missions, and maximize your level. Give it your all, Space Cadets!💪 👉TO THE MOON APP👈 Website | Telegram Chat | X | Discord | Medium #ToTheMoon#MoonPlay#ecosystem#blockchain#gamefi#web3#wenlisting#seasonend#finish#communitymilestone#communityfirst#taptap#clicker#game