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

Резултати

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

Пребарај: #jailstool

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

@venturevillagewall · Post #4119 · 11.02.2025 г., 04:00

Coinbase Aims for More Token Listings Jesse Pollak of Base protocol hopes Coinbase will list more tokens, enhancing options from Base and other networks. The Coinbase Assets team is also scaling to improve token listings. More details here. Celebrity coins see major declines: MOTHER, DADDY, TRUMP, MELANIA, and JAILSTOOL have dropped an average of 78% since ATH. TRUMP dropped over 60%; MELANIA over 80%. MOTHER and DADDY remain down over 80% since their peaks in June-July 2024. Find out more here. Tesla reported $600 million in Bitcoin profits for Q4 last year, holding 11,509 BTC, aided by new accounting rules allowing market value recordings of digital assets. More information can be found here. Wall Street banks are optimistic about the crypto industry's future during Trump's potential term, anticipating IPOs and stock sales, and aligning their strategies accordingly. See the full article here. Grayscale submitted a 19b-4 application to list shares of the Grayscale Cardano Trust on NYSE Arca. Details can be found here. #Coinbase#Crypto#Tesla#Bitcoin#WallStreet#IPO#Grayscale#Cardano#Blockchain#Tokens#CelebrityCoins#FinancialNews#SEC#Investing#MOTHER#DADDY#TRUMP#MELANIA#JAILSTOOL#VC#Finance