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

Резултати

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

Пребарај: #rei

当前筛选 #rei清除筛选
Pro Analysis

@proanalysistrader · Post #28540 · 14.03.2025 г., 05:26

#REI/USDT analysis : The price of #REI has tested and bounced back from a support zone that has been tested multiple times. It's anticipated to move upward to higher levels. For a long entry, wait for a retracement. TF : 1H Entry : $0.02464 Target : $0.02683 SL : $0.02360

Hashtags

Pro Analysis

@proanalysistrader · Post #28440 · 01.02.2025 г., 11:39

#REI/USDT analysis : #REI has broken out and retested the previously respected support zone. The price is expected to decline from this level and resume its bearish momentum, potentially testing lower levels. TF : 1H Entry : $0.04800 Target : $0.04620 SL : $0.04943

Hashtags

Pro Analysis

@proanalysistrader · Post #27887 · 30.08.2024 г., 01:05

#REI/USDT analysis : #REI has bounced back from the support zone after a correction phase till the 200 EMA. Price is now expected to keep up its bullish vibe and test the previous swing high. TF : 1H Entry : $0.0591 Target : $0.0657 SL : $0.0543

Hashtags

Pro Analysis

@proanalysistrader · Post #27881 · 28.08.2024 г., 00:47

#REI/USDT analysis : #REI just went below the support levels, which is now acting as resistance for the price. It's expected that the price is going test the previous swing low support level. TF : 1h Entry : $0.0563 Target : $0.0519 SL : $0.0594

Hashtags

Pro Analysis

@proanalysistrader · Post #27711 · 27.06.2024 г., 07:02

#REI/USDT analysis - #REI is in a downtrend. Currently, the price is consolidating above support levels after a pullback. The price is attempting to break through these support levels, and it is expected to do so soon. Wait for the 1-hour candle to close below the level, and then enter on the retest of the price in the marked zone. The previous swing low will be the target. TF : 1h Entry : $0.04995 Target : $0.04767 SL : $0.05143

Hashtags

Kpop Premium 《🌿》

@bubbletealuv · Post #3178 · 18.04.2025 г., 17:06

ᝬ 🤩𖠵 ゛ (( 🐰) new post by bubbletealuv ↝ #Rei➛ #Ive.. ✨ …( emoji ) 💭 взяли? буду рад увидеть плюсы и реакции.

Hashtags

ПретходнаСтраница 1 од 3Следна