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

Резултати

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

Пребарај: #loscoin

当前筛选 #loscoin清除筛选
LOS Community

@losgamecoin · Post #83 · 14.06.2025 г., 05:20

🚀#LOScoin is excited to announce that we have successfully completed $2 million in funding! In this round of financing, Solana Foundation led the investment, and CMS Holdings, Impossible Finance, Yield Guild Games (YGG) and Monad and other well-known institutions followed the investment, helping LOScoin build a more powerful and interactive Web3 gaming social ecosystem 2.0 $LOS This round of financing also received strong support from @AI_mint__ CEO Keone Hon, further confirming our innovation and leadership in the Web3 gaming field.

Hashtags

LOS Community

@losgamecoin · Post #80 · 27.10.2024 г., 16:18

🚀#LOScoin is excited to announce that we have successfully completed $2 million in funding! In this round of financing, Solana Foundation led the investment, and CMS Holdings, Impossible Finance, Yield Guild Games (YGG) and Monad and other well-known institutions followed the investment, helping LOScoin build a more powerful and interactive Web3 gaming social ecosystem 2.0 $LOS This round of financing also received strong support from @AI_mint__ CEO Keone Hon, further confirming our innovation and leadership in the Web3 gaming field. 🚨📌🔗 🤑 🤙 🤙 🤙 🤙 🤙 🤙 🤑 🤑

Hashtags

LOS Community

@losgamecoin · Post #71 · 18.10.2024 г., 05:45

It's time to show the unity and strength of the #LOScoin community Vote for #LOScoin and accomplish great things X: https://x.com/anndylian/status/1847137465762758958

Hashtags

LOS Community

@losgamecoin · Post #69 · 13.10.2024 г., 10:49

Cut the noise. Focus on what you love. Follow #LOScoin $LOS 🤑 🤑 🤑 🤑 🤑 🤑 🤑 🤑 📱https://x.com/losgamecoin/status/1845412082788806783?s=46

Hashtags

LOS Community

@losgamecoin · Post #50 · 06.09.2024 г., 15:04

No bullshit, I just do what I love #LOScoin Fly to the moon 🚀🚀🚀 ❌ ❌ ❌ ❌ ❌ ❌ ❌ ❌ 🤑 🤑 🤑 🤑 🤑 🤑 🤑 🤑 🤑 🤑 🤑 ✈️ ✈️ ✈️ ✈️ ✈️ ✈️ ✈️ ✈️ ✈️ ✈️ ✈️

Hashtags

LOS Community

@losgamecoin · Post #47 · 05.09.2024 г., 10:25

📱👉🎮#LOScoin#LOScoin#LOScoin 🎮👉💵#LOScoin#LOScoin#LOScoin 💵👉⛴#LOScoin#LOScoin#LOScoin ⛴👉🏖 $LOS 🚀 $LOS 🚀 $LOS 🚀 🏖👉🪙 $LOS 🚀 $LOS 🚀 $LOS 🚀 🪙👉🚀 $LOS 🚀 $LOS 🚀 $LOS 🚀 🤑 🤑 🤑 🤑 🤑 🤑 🤑 🤑 🤑 🤑 ❌ ❌ ❌ ❌ ❌ ❌ ❌ ❌ ❌ ❌

Hashtags

LOS Community

@losgamecoin · Post #36 · 02.09.2024 г., 10:13

🚨 Reminder: Remember to claim your referral income and game rewards every day! 🤙 🧐 😎 If you miss it, they will be burned after 24 hours 🤑 🤑 🤑 #LOScoin 🤑 🖤https://x.com/losgamecoin/status/1830543753670713509?s=46

Hashtags

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