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

Резултати

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

Пребарај: #avacoin

当前筛选 #avacoin清除筛选

On the 20th there will be a listing of#DOGS. I think in the first 1-3 days I will buy, as soon as I see that all weak(paper) hands have sold their tokens. 53 million users and a fairly strong strong exchange #OKX lists them, there is a chance of growth. Everyone has few tokens, but the total number of those who want to sell is extremely high, and one #OKX exchange may not be enough. After all, this is not a project that distributes money, but traders who have been sitting on exchanges with their money for years buy out tokens. If they want to do this. Therefore, success depends on three exchanges - #Binance, #Bybit, #okx , then there will be something similar to @notcoin. Without all the exchanges, the price at the moment can fall for a long time, and not 2-3 days, like for example at #pixelverse , at #avacoin . Therefore, I chose different strategies for myself. It all depends on the exchanges the project is listed on at the start, the number of users who came for the free 10 dollars, and the exchanges that are in the roadmap. Remember, projects do not give you money, this is done through the exchanges (More Ex-es - more proce and money) .