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

Пребарај: #employees

当前筛选 #employees清除筛选
Venture Village Wall 🦄

@venturevillagewall · Post #4082 · 06.02.2025 г., 13:00

AI Superagency in Workplace Gains Ground McKinsey's new report talks about the rise of AI superagency at workplaces, empowering employees to leverage AI's full potential. While long-term benefits are acknowledged, quick returns on investment are not widely seen. Surveys show employees are optimistic and ready for AI, yet leaders underestimate current AI use. The report suggests that the foundation for AI superagency exists, and leaders should take notice. Read the full report here: McKinsey Report #AI#Workplace#Leadership#Innovation#Technology#McKinsey#Superagency#Investment#Employees#Research

Crypto M - Crypto News

@CryptoM · Post #64477 · 09.04.2026 г., 02:04

🚀 Anthropic Completes Secondary Market Equity Sale Anthropic has recently completed a secondary market equity sale, with some employees selling a small portion of their shares to investors. According to Odaily, the limited willingness of employees to sell resulted in several investors not receiving their planned share allocations. The transaction was priced in line with the company's latest funding round valuation from February this year, maintaining Anthropic's current valuation at $350 billion, excluding the $30 billion raised in this round. #Anthropic#EquitySale#SecondaryMarket#Employees#Investors#FundingRound#Valuation#TechNews