TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #32 · 7 фев.

Скорее всего уже слышали, что складывать строки через + это плохая практика. Падение производительности, и всё такое. Без лишних слов, давайте измерять: from timeit import timeit def t1(): # складываем 10 строк через + из переменной t = 'text' for _ in range(1000): s = t + t + t + t + t + t + t + t + t def t2(): # склеиваем список строк через метод join arr = ['text'] * 10 for _ in range(1000): s = ''.join(arr) def t3(): # складываем через + но не из переменной а непосредственно инлайн объекты for _ in range(1000): s = 'text' + 'text' + 'text' + ... # всего 10 раз Теперь каждую строку склейки запустим по 10М раз >>> timeit(t1, number=10000) 0.21951690399964718 >>> timeit(t2, number=10000) 1.4978306379998685 >>> timeit(t3, number=10000) 0.2213820789993406 Хм, а нам говорили что через "+" это плохо и медленно ))) 😁 Тут стоит учитывать, что речь идёт о склейке множества длинных строк. Давайте изменим условия: def t4(): t = 'text'*100 for _ in range(1000): s = t + t + t + t + t + t + t + t + t def t5(): arr = ['text'*100] * 10 for _ in range(1000): s = ''.join(arr) def t6(): for _ in range(1000): s = 'text'*100 + 'text'*100 + ... # всего 10 раз >>> timeit(t4, number=10000) 12.795130728000004 >>> timeit(t5, number=10000) 2.642637542999182 >>> timeit(t6, number=10000) 0.2184546610005782 Вот, уже другой разговор, сразу видна разница, в среднем в 6 раз. Но погодите, почему последний тест t6() по скорости такой же как и t3()? Ведь строки теперь в 100 раз длиннее! Это вопросы оптимизации кода, какие простые изменения ускоряют или замедляют выполнение программы. Мы столкнулись с примером обхода обращения к переменной. Например, именно так работает директива #define в С++, во время компиляции подставляя значение переменной вместо ссылки на неё. В Python это тоже работает, но часто ли вы сможете встретить такой способ работы со строками? К сожалению, способ почти только теоретический. В целом, тесты показали то, что мы хотели. Делаем выводы самостоятельно. Полный листинг 🌍 #tricks

Резултати

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

Пребарај: #lpt

当前筛选 #lpt清除筛选
Coin Sonar

@CoinSonar · Post #244005 · 18.04.2026 г., 06:11

#LPT | Volume spike (USDT PAIR) 30 times the average volume 129.64K USDT traded in 15 min └Buying vol: 72.57K USDT 🟢 Boost score: 3/10 24h Vol: 411.61K USDT (Binance) Price: 2.268 (-1.5% in 24h)

Hashtags

Coin Sonar

@CoinSonar · Post #243728 · 17.04.2026 г., 15:04

#LPT | Volume spike (USDT PAIR) 30 times the average volume 129.24K USDT traded in 15 min └Selling vol: 84.86K USDT 🔴 Boost score: 1/10 24h Vol: 411.61K USDT (Binance) Price: 2.239 (-1.5% in 24h)

Hashtags

Coin Sonar

@CoinSonar · Post #243445 · 17.04.2026 г., 04:38

#LPT | Volume spike (USDT PAIR) 31 times the average volume 135.03K USDT traded in 15 min └Buying vol: 73.04K USDT 🟢 Boost score: 3/10 24h Vol: 411.61K USDT (Binance) Price: 2.181 (-1.5% in 24h)

Hashtags

CryptoBull_360™

@cryptobull_360 · Post #48443 · 19.02.2026 г., 12:05

#LPT is consolidating within a falling wedge pattern and is currently trading above the support trendline. A bounce from this level is possible, while a breakout of the pattern would confirm bullish momentum. Conversely, a breakdown below the wedge could lead to further correction.

Hashtags

Pro Analysis

@proanalysistrader · Post #28569 · 22.03.2025 г., 03:45

#LPT/USDT analysis : #LPT is currently experiencing a bearish trend, trading below the 200 Exponential Moving Average (EMA). The price has encountered resistance at the 200 EMA and has broken below the established trendline, suggesting further downward momentum. A decline to test the swing low level is anticipated. TF : 2h Entry : $5.423 Target : $4.883 SL : $5.740

Hashtags

Pro Analysis

@proanalysistrader · Post #28400 · 19.01.2025 г., 05:47

#LPT/USDT analysis : #LPT has broken down and retested the previous support zone, which is now acting as resistance for the price. It is anticipated that the price will resume its bearish momentum from the current level and test lower levels. For a short entry, it is advisable to wait for a price retracement. TF : 1H Entry : $13.76 Target : $12.78 SL : $14.36

Hashtags

Pro Analysis

@proanalysistrader · Post #27971 · 29.09.2024 г., 06:07

#LPT/USDT analysis : #LPT is currently consolidating sideways in a correction phase above the 200 EMA. The price is likely to test the support zone and then bounce back from there to test the resistance zone. TF : 1H Entry : $14.60 Target : $15.30 SL : $14.25

Hashtags

American Crypto©

@americancryptotrading · Post #27083 · 14.12.2024 г., 18:28

🇺🇸#LPT/USDT is retesting the upper border of a symmetricaltriangle pattern on the 1W timeframe👨‍💻 Pump is expected✈️ American Crypto©

Hashtags

American Crypto©

@americancryptotrading · Post #27018 · 16.10.2024 г., 07:35

🇺🇸#LPT/USDT LPT is testing the key zone right now on weekly timeframe🧐 Bullish case📈 American Crypto©

Hashtags

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