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

Пребарај: #tongaming

当前筛选 #tongaming清除筛选
TONlines – News

@tonlines · Post #7183 · 13.05.2025 г., 08:33

⚡️TapSwap Community: Last Chance for Beta Access #TapSwap#TONGaming The TapSwap community is wrapping up the formation of its early access group for the beta version. Users can participate in skill-based games and experience $TAPS directly through Telegram. It’s a final call to submit Telegram handles for those interested. Source: link @tonlines

Crypto Drop Club

@drop_cryptogo · Post #1799 · 15.05.2025 г., 17:34

😱 Are you missing everything again? This is the last chance to get into the TapSwap beta test before it goes mainstream! We've almost assembled a select group of people - those who will be the first to see how TapSwap works from the inside. Want to go there? Then go for it! In beta: 🎯 Games where it's important not to poke, but to think 🪙 $TAPS is not a toy, but a currency 📲 Everything via Telegram — no downloads, no headaches Leave your nickname and we will find you (in a good way): 👉https://forms.gle/Wdp8ZsofBM6Xzjyk6 Bot link: tapswap_bot📱 #TapSwap#Бета#SkillToEarn#TONGaming Crypto Drop Club 👉 SUBSCRIBE

Nigeria Football Hub

@football_nigeria · Post #1083 · 15.05.2025 г., 14:19

⚠️ Final call to join the TapSwap beta! We are finalizing the formation of the early access group. If you haven't sent your Telegram nickname yet, now is the time to do it.📱 As part of the beta version you will receive: - Access to skill-based mechanics — Possibility to test $TAPS in operation — Participation directly through Telegram, without unnecessary installations 📩 Leave your nickname here so we can add you to the list: 👉https://forms.gle/Wdp8ZsofBM6Xzjyk6 Bot link: tapswap_bot📱 #TapSwap#Бета#SkillToEarn#TONGaming Nigeria Football Hub

INSIDER USA | News

@insider_usa_news · Post #3338 · 15.05.2025 г., 16:01

⚠️Last chance to get into the TapSwap beta test We are finalizing the formation of the early access group. If you haven't sent your Telegram nickname yet, now is the time to do it.📱 As part of the beta version you will receive: - Access to skill-based mechanics — Possibility to test $TAPS in operation — Participation directly through Telegram, without unnecessary installations 📩 Leave your nickname here so we can add you to the list: 👉https://forms.gle/Wdp8ZsofBM6Xzjyk6 Bot link: tapswap_bot📱 #TapSwap#Бета#SkillToEarn#TONGaming INSIDER USA 👉🏻 Subscribe