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

Резултати

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

Пребарај: #qnt

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

@proanalysistrader · Post #28395 · 17.01.2025 г., 14:54

#QNT/USDT analysis : #QNT is currently in a correction phase. Price is expected to decline further and test the previous swing high support level before continuing its bullish momentum. It’s advisable to wait for the price to retest the previously respected zone for a short entry, as the price is anticipated to decline and test lower levels. TF : 1D Entry : $126 Target : $81 SL : $156

Hashtags

Pro Analysis

@proanalysistrader · Post #27982 · 03.10.2024 г., 14:55

#QNT/USDT analysis : #QNT is currently in a downtrend, trading below the 200 EMA. The price is likely to retrace and test the resistance zone before continuing its bearish momentum. The current swing low is expected to be tested. TF : 1H Entry : $70.4 Target : $66.5 SL : $72.5

Hashtags

American Crypto©

@americancryptotrading · Post #27432 · 08.11.2025 г., 10:12

🇺🇸#QNT/USDT is currently trading within the symmetricaltriangle formation on the weekly chart💁‍♂️ Breakout soon🚀 American Crypto©

Hashtags

Binance crypto champions

@binancecryptochampions · Post #2531 · 22.07.2025 г., 13:11

✴️Free signal-Futures ✴️ ⚡️⚡️#QNT/USDT⚡️⚡️ Exchanges: Binance Futures, Bybit USDT Signal Type: Regular (Long) Leverage: Cross (20x) Margin: 2.0% Entry Targets: 1) 128.80 2) 131.50 Take-Profit Targets: 1) 133 2) 135 3) 141 Stop Targets: 1) 127.60 🍁 Published by: @Trading_exp🍁 Join_vip: @Crypto_Futures_Spot_Payment_bot

Hashtags

Crypto

@signal_bitcoins · Post #2433 · 20.01.2024 г., 10:40

#QNT broken down the trendline on 12H Time frame,we expect another dump after pullback,more correction incoming..👀 ❄️@signals_bitcoin_crypto❄️ ❄️@Shadow_support0o❄️

Hashtags

Crypto

@signal_bitcoins · Post #1498 · 17.09.2023 г., 18:16

📊#QNT price break below the $97 major support area. The last hope is the $90 support level; if the price breaks below this, we see a heavy selloff. Price needs to reclaim the $100 level to gain some positive movement. It is better to wait for some time to open new trades.⌛️ ❄️@signals_bitcoin_crypto❄️ ❄️@Shadow_support0o❄️

Hashtags

Mexc Crypto Signals Pumps Trading Kucoin

@mexc_signals_pumps_trading · Post #974 · 20.04.2024 г., 16:53

#QNT/USDT UPDATE: #QNT is now trading around 106$. #QNT is moving inside a symmetrical triangle on 4hr time frame. So the Possible scenarios are If the price pumps up and breaks out of the triangle, we can see bullish momentum in it. Otherwise If the price dumps and breaks down of the triangle, we can see bearish momentum in it. Stay tuned with us for further updates✔️

Hashtags

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