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

TGINSIGHT SIMILAR POSTS

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

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

Те, кто в Python не первый день, хорошо знают, что на число можно умножить не только число, но и другие типы. Главное, чтобы у этих типов была реализация такой операции. # list >>> [1] * 3 [1, 1, 1] # tuple >>> (2, 3) * 3 (2, 3, 2, 3, 2, 3) # string >>> "A" * 3 "AAA" Так работает полиморфизм стандартных типов. Интересно здесь то, что это сработает и в том случае, когда порядок операндов обратный. То есть int умножить на [тип]. # list >>> 3 * [1] [1, 1, 1] # tuple >>> 3 * (2, 3) (2, 3, 2, 3, 2, 3) # string >>> 3 * "A" "AAA" Если хотите реализовать такое поведение в ваших классах то следует помнить два момента: 1. Если множитель справа, то вам нужно реализовать метод __mul__, наш класс это первый операнд, то есть слева. myType * 3 2. Если множитель слева, то вам нужно реализовать метод __rmul__, наш класс это второй операнд, справа. 3* myType Всё тоже самое можно делать и для других математических операторов. И если в этом примере действие и результат будут фактически одинаковыми, то бывают ситуации, когда это не так. Например, при умножении матриц имеет значение порядок операндов. Для других операторов, таких как деление или сдвиг, очень важно кто с какой стороны находится. >>> 2/4, 4/2 (0.5, 2.0) >>> 2<<3, 3<<2 (16, 12) >>> 100%15, 15%100 (10, 15) #tricks#basic

Резултати

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

Пребарај: #onchaindetection

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

@CryptoM · Post #64878 · 10.04.2026 г., 06:15

🚀 Huang Licheng Achieves Profitable Trading Streak Huang Licheng, also known as 'Machi Big Brother,' has maintained a successful trading streak without liquidation for 10 days. According to BlockBeats On-chain Detection, he has completed 13 consecutive profitable trades, earning a profit of $1.14 million over the past week. #HuangLicheng#Trading#CryptoTrading#ProfitStreak#Blockchain#OnChainDetection#CryptoInvesting#MachiBigBrother

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 #65228 · 12.04.2026 г., 06:13

🚀 Whales Accumulate TRUMP Tokens Ahead of Trump Luncheon On April 12, two significant cryptocurrency holders have been accumulating TRUMP tokens in anticipation of a luncheon with U.S. President Donald Trump. According to BlockBeats On-chain Detection, Whale 8DHkza has withdrawn 850,488 TRUMP tokens from a centralized exchange over the past two days. Meanwhile, Whale 7EtuAt extracted 105,754 TRUMP tokens from another centralized exchange 17 hours ago, bringing their total holdings to 1.13 million TRUMP tokens. #Whales#TRUMPTokens#DonaldTrump#Cryptocurrency#Blockchain#CryptoWhales#Luncheon#OnChainDetection#CentralizedExchange