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

Резултати

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

Пребарај: #realfi

当前筛选 #realfi清除筛选
Go! Announcements

@gorwachain_announcements · Post #512 · 28.08.2024 г., 12:13

⚡️Go! Smartchain is bridging the gap with Realfi, a ground breaking hybrid financial system⚡️ Peruse through the Go! Blog posts for some special knowledge 🔗https://gosmartchain.ai/blog RealFi is a revolutionary approach that combines the stability of the traditional financial system with the innovations of DeFi. It's profitability to you can be seen in the; 1️⃣ Lower costs 2️⃣ Enhanced liquidity 3️⃣ Improved security 4️⃣ Greater accessibility 5️⃣ Innovative financial products With Go!, you can access essential services and make a positive impact on your community. Join the RealFi revolution now💪 #finance#Realfi#Defi#Innovation#blockchain Join: 🐣X✉️Chat✉️News🤖Discord Play: 🕹️TON App💻Web App Info: 🖥Newsletter🌐Website🌐Blog

Go! Announcements

@gorwachain_announcements · Post #510 · 27.08.2024 г., 13:18

🌟 Revolutionize with RealFi by Go! SmartChain AI! 🌟 Here's a sneak peak into how Realfi is transforming communities with Go!👇 🔗https://goplatform.io/blog/introducing-realfi-transforming-communities-with-decentralized-ai RealFi represents a significant leap in integrating AI, blockchain, and community-driven initiatives With the ability to tokenize anything in seconds, RealFi makes the process simple, fun, and rewarding for you to participate and benefit. Join Go! on this transformative journey. #Realfi#Gosmartchain#AI#blockchain#tokenize ------------------------- Join: 🐣X✉️Chat✉️News🤖Discord Play: 🕹️TON App💻Web App Info: 🖥Newsletter🌐Website🌐Blog

Go! Announcements

@gorwachain_announcements · Post #1056 · 13.10.2025 г., 19:08

Every transaction tells a story. Validated. Broadcast. Secured on Go! SmartChain. This is how real-world value becomes digital — fast, transparent, and verified. 💡 Try it yourself: https://app.gosmartchain.ai #GSMC#GoSmartChain#RWA#RealFi#Blockchain

Go! Announcements

@gorwachain_announcements · Post #547 · 11.09.2024 г., 14:13

🚀 Ready to build & secure the future of decentralized finance? Dive into a day in the life of a developer & validator on the Lysa Testnet! Learn how to create dApps, validate blocks, and earn rewards on Go! SmartChain AI. Explore more👇 👉https://tally.so/r/wQYoxl #Blockchain#DeFi#RealFi#LysaTestnet#GoSmartChain#developers#validators#BlockchainGaming ----------------- Join: 🐣X✉️Chat✉️News🤖Discord Play: 🕹️TON App💻Web App Info: 🖥Newsletter🌐Website🌐Blog