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

Резултати

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

Пребарај: #checkin

当前筛选 #checkin清除筛选
Airdropp.io

@airdropp_io · Post #464 · 29.01.2024 г., 21:16

🔥 Playbux Airdrop 🔹10 Million PBUX Token and 100,000 USDT Pool 🔹Playbux is in the Binance investment program 👉https://www.playbux.co/pre-listing-quest/?ref=Bso20iOZz00 1️⃣ Click on the link and log in directly with Gmail and connect the wallet. 2️⃣ Enter the tasks and do twitter follow, retweet tasks. Make a claim after the tasks are over. 3️⃣ You can also get points for daily check-in. #playbux#airdrop#binance#pbux#checkin

Go! Announcements

@gorwachain_announcements · Post #518 · 31.08.2024 г., 12:40

🚀 Time to Check In, Go! SmartChain AI Community! Check in now if you're yet to👇 🔗https://t.me/thegoprojectbot?start=twitter Here's an another opportunity to increase your daily dose of engagement and rewards! 🎮💰 And once you're in 1. Click "Open App" to get started 2. Tap the Go! token to collect rewards 3. Complete your daily tasks and quests to earn GoXP Most importantly, Stay active and climb your way to the top. Your participation paves the way for you 💪 #CheckIn#EarnRewards#GoSmartChain#GoTonapp ----------------- Join: 🐣X✉️Chat✉️News🤖Discord Play: 🕹️TON App💻Web App Info: 🖥Newsletter🌐Website🌐Blog

Airdropp.io

@airdropp_io · Post #465 · 29.01.2024 г., 21:17

🔥Redbrick Airdrop I found a fun airdrop. We will play a very short game and collect daily points and airdrops. 💎https://redbrickland.page.link/6ehG 🔸20M$ investment 🔸Partners with Fusionist team 🔸We collect points by logging in daily 🔸Points will turn into $BRICK tokens. 1️⃣ First, we enter the site and connect wallet in polygon network. 👉https://redbrickland.page.link/6ehG Ref code : 6ehG 2️⃣ Then we select the avatar and go to the immigraiton page. 👉https://redbrick.land/web3-portal/immigration 3️⃣ On this page we do twitter etc. tasks and play the ghost killing game for 30 seconds. 4️⃣ Then we come to the daily page and play our daily game. 👉https://redbrick.land/web3-portal/daily #redbrick#airdrop#checkin#BRICK#fusionist#gamefi