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

TGINSIGHT SIMILAR POSTS

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

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

Метод строки split() разделяет строку на несколько строк по указанному символу >>> "a_b_c".split('_') ['a', 'b', 'c'] Можно указать максимальное количество разделений >>> "a_b_c".split('_', 1) ['a', 'b_c'] Или резать с другой стороны с помощью rsplit() (right split) >>> "a_b_c".rsplit('_', 1) ['a_b', 'c'] А что будет если оставить аргументы пустыми? >>> "a_b_c".split() ['a_b_c'] Получаем список с одним элементом, потому что по умолчанию используется пробельный символ. >>> "a b c".split() ['a', 'b', 'c'] То есть это равнозначно такому вызову? >>> "a b c".split(" ") ['a', 'b', 'c'] Кажется да, но нет! Давайте попробуем добавить пробелов между буквами >>> "a b c".split(" ") ['a', '', '', 'b', '', '', 'c'] И вот картина уже не так предсказуема 😕 А вот что будет по умолчанию >>> "a b c".split() ['a', 'b', 'c'] Всё снова красиво! 🤩 По умолчанию в качестве разделителя используется любой пробельный символ, будь то табуляция или новая строка. Включая несколько таких символов идущих подряд. А также игнорируются пробельные символы по краям строки. >>> "a\t b\n c ".split() ['a', 'b', 'c'] Аналогичный способ можно собрать с помощью регулярного выражения. Но пробелы по краям строки придется обрабатывать дополнительно. >>> import re >>> re.split(r"\s+", ' a b c '.strip()) ['a', 'b', 'c'] Здесь тоже можно указать количество разделений >>> re.split(r"\s+", 'a b c', 1) ['a', 'b c'] А что если мы хотим написать красиво, то есть split() без аргументов, но при этом указать количество разделений? В этом случае первым аргументом передаём None >>> "a\n b c".split(None, 1) ['a', 'b c'] Данный метод не учитывает строки с пробелами, взятые в кавычки 'a "b c" '.split() ['a', '"b', 'c"'] Но для таких случаев есть другие способы. #tricks#basic

Резултати

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

Пребарај: #floatingloss

当前筛选 #floatingloss清除筛选
Crypto M - Crypto News

@CryptoM · Post #65418 · 13.04.2026 г., 06:24

🚀 Whale Opens High-Leverage Bitcoin Short Position A large cryptocurrency holder, identified by the address starting with 0x004, has opened a Bitcoin short position with 33x leverage. According to ChainCatcher, the average price for this position is $70,745, involving 200 BTC. The position currently shows a floating loss of 10%. Earlier today, the same address closed a previous Bitcoin short position at break-even and has now re-entered the market. This marks the fifth time this month that the address has opened a short position. #Whale#Bitcoin#ShortPosition#Leverage#Cryptocurrency#BTC#ChainCatcher#FloatingLoss#Market#CryptoTrading

Crypto M - Crypto News

@CryptoM · Post #64871 · 10.04.2026 г., 06:00

🚀 Cryptocurrency Analyst Reports Significant Gains and Losses in BTC and ETH Positions Analyst @ai_9684xtpa posted on X about the latest updates on cryptocurrency positions, highlighting substantial financial movements. A user, @Jason60704294, shared in the comments section that they have set ten major goals and updated their current positions, showing a floating profit of $644,000. In the Bitcoin (BTC) short position, the user holds 2,567.49 BTC with an opening price of $71,554.61, currently experiencing a floating loss of $1.374 million. Meanwhile, the Ethereum (ETH) short position consists of 38,465.22 ETH, opened at a price of $2,248.74, resulting in a floating profit of $2.018 million. The discussion reflects the volatile nature of cryptocurrency trading, where significant gains and losses can occur based on market fluctuations. Traders often set strategic goals and adjust their positions accordingly to navigate the unpredictable market landscape. #Cryptocurrency#BTC#ETH#Bitcoin#Ethereum#Trading#ProfitLoss#MarketFluctuations#ShortPosition#FloatingProfit#FloatingLoss#CryptoAnalysis

Crypto M - Crypto News

@CryptoM · Post #64534 · 09.04.2026 г., 06:35

🚀 BTC Short Position Expanded by Strategy Counterparty On April 9, a significant adjustment was made to a BTC short position by the entity known as 'Strategy Counterparty' (0x94d3). According to BlockBeats On-chain Detection, the position was increased by 81.06 BTC, valued at approximately $5.209 million. The total position size has now reached $75.2048 million, with the average price slightly rising from $69,036.20 to $69,181.40. The liquidation price is set at $79,320.81. Currently, the position is experiencing a floating loss of approximately $1.8229 million, marking a decrease of 96.96%. This makes it the largest BTC short position on the Hyperliquid platform. It is noted that this address previously established a substantial short position against mainstream cryptocurrencies during MicroStrategy's significant BTC acquisitions last December. At that time, the position size peaked at $120 million, making it the largest BTC short on the Hyperliquid platform. #BTC#ShortPosition#StrategyCounterparty#Blockchain#OnChainDetection#Crypto#Hyperliquid#FloatingLoss#BTCShort#MarketAdjustment#Cryptocurrency

Crypto M - Crypto News

@CryptoM · Post #65374 · 13.04.2026 г., 03:00

🚀 Hyperithm's Oil Short Positions Experience Rapid Losses Analyst @ai_9684xtpa posted on X that Hyperithm's oil short positions have seen significant changes in just one day. Initially, these positions had a floating profit of $5.886 million, but they have now turned into a floating loss of $2.1 million. The CL short position, valued at $37.88 million, was opened at a price of $95.211 and currently has a floating loss of $1.402 million. Meanwhile, the BRENTOIL short position, valued at $35.17 million, was opened at a price of $95.986 and is experiencing a floating loss of $620 thousand. Currently, the address holds the largest leveraged position in Hyperliquid BRENTOIL and the third-largest leveraged position in CL. #Hyperithm#oil#shortpositions#floatingloss#CL#BRENTOIL#leveragedposition#Hyperliquid#analyst