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

Пребарај: #distribution

当前筛选 #distribution清除筛选
Amazing Geography 🌍

@amazingeo · Post #383 · 17.10.2025 г., 15:31

🌍 Just 2% of the world’s population lives in countries with fewer than one million people, while over half reside in just seven nations, highlighting an immense population imbalance. ✨ #population⚡#demography⚡#distribution⚡#geography⚡#nature⚡#earth 👉subscribe Amazing Geography 👉more Channels ​

Amazing Geography 🌍

@amazingeo · Post #35 · 11.08.2025 г., 03:12

🌍 More than 90% of the world's population lives in the Northern Hemisphere, even though the Southern Hemisphere covers about 40% of Earth's land. The balance of people is strikingly uneven. ✨ #population⚡#hemispheres⚡#distribution⚡#geography⚡#nature⚡#earth 👉subscribe Amazing Geography🌍

Как устроен Balton Trading Asia: взгляд изнутри Представители Balton Trading Asia, одного из ведущих игроков рынка FMCG-дистрибуции в Узбекистане показали и рассказали о своём новом складе класса "А+", а также обсудили: ✔️ Построение эффективной логистики; ✔️ Что такое 3PL; ✔️ Что такое дистрибуция; ✔️ Как современные системы WMS и TMS оптимизируют ключевые процессы А также рассказали о том, для кого важны услуги логистики и хранения Все это в новом ролике на gazeta.uz #LOGISTICS#BALTONTRADINGASIA#UZBEKISTAN#DISTRIBUTION#3PL#WAREHOUSE

Venture Village Wall 🦄

@venturevillagewall · Post #3848 · 11.01.2025 г., 13:00

200M for Email Simplification App! In 2013, a startup created a user-friendly email app to combine personal and work emails, reducing clicks to complete tasks. Microsoft acquired the app for $200 million after 18 months. Initially, it reached 3 million users at launch, soaring to hundreds of millions three years later. The founder emphasized a goal to simplify, not reinvent, email—echoing Dropbox's approach of enhancing existing solutions. Glassnode notes a 49.6% increase in new investors controlling bitcoin supply, with long-term holders redistributing assets, though it's not seen as a bearish signal. Insights from tech analyst Ali Martinez suggest declining hype around AI agents, affecting specific token prices. Polymarket users estimate a 12% chance the US government will sell seized BTC before Trump's inauguration, with $6.5 billion at stake. #Email#Microsoft#Startup#Acquisition#Usability#Glassnode#Bitcoin#Investors#Crypto#AI#MarketTrends#Polymarket#BTC#Trading#Innovation#TechNews#VC#Fundraising#TechAnalytics#Distribution

Venture Village Wall 🦄

@venturevillagewall · Post #3857 · 12.01.2025 г., 16:00

FTX Announces Preliminary Fund Distribution Schedule 🔵 FTX reveals a preliminary payment distribution schedule for creditors. 🔵 Claims under $50k total $1.2 billion. 🔴 By January 20: Preliminary claims must be met. 🔴February 25 - March 4: Expected period for fund distribution begins. 🤔 Will this bring additional liquidity to the market? Read more #FTX#Crypto#Market#Liquidity#Payments#Claims#Finance#Investments#Bitcoin#News#Updates#Distribution#Schedule#CryptoTwitter#Investors#Creditors#Funds#Return#January#February#March