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 слични објави

Пребарај: #autonews

当前筛选 #autonews清除筛选
America 🇺🇸 News & Politics

@America · Post #10618 · 06.05.2026 г., 16:20

🔋🇺🇸EV REVOLUTION IN REVERSE — NEW ELECTRIC CAR SALES CRASH 27% AS TAX CREDITS VANISH 🔹 Q1 sales plummet to just 216k units as post-credit shock decimates demand — market share nosedives from 10.5% to 4.8% 📉 🔹 Ford EV deliveries obliterated by 70% while Honda collapses 81% — automakers bleeding red ink on every unit sold 🏭 🔹 Used electric cars hit record 43k monthly sales as buyers refuse to pay full sticker on brand new models 🚗 🔹 Nissan cancels US factory plans entirely while battery makers scramble for shrinking order books worldwide 🔧 Americans love the idea of EVs — they just refuse to pay premium prices without Uncle Sam's help 💀🔥 #EVCrisis#AutoNews @america

Auto Life

@revheadcrypto · Post #561 · 09.10.2024 г., 08:59

🚗✨Lexus Unveils Upgraded LC Coupe and Convertible!✨🚗 Since its debut in 2017, the Lexus LC family has received a sleek exterior makeover and new interior materials. But that's not all! The updated models now feature a stiffer chassis, thanks to additional braces installed under the floor near the front and rear axles, enhancing overall handling. 🏎️💨 Under the hood, the Lexus LC offers a powerful lineup: a 5.0L V8 engine producing 477 hp or a hybrid V6 powertrain with a 3.5L engine delivering 359 hp. 🔥🔋 #LexusLC#LuxuryCars#CarEnthusiast#DrivingExperience#AutoNews#V8Power#Auto

Auto Life

@revheadcrypto · Post #458 · 07.09.2024 г., 12:55

🚙✨ Exciting News! The new Mitsubishi Pajero Sport has hit the testing grounds! 🛤️🔍 Despite its camouflage, it's clear that the front design draws inspiration from the current L200/Triton pickup. 🛻💨 The new front end beautifully complements the familiar rear styling. Could this be a prototype testing individual components in a non-production body? 🤔🔧 While the release date remains a mystery, the current model is set to be discontinued in 2025. ⏳📅 #MitsubishiPajeroSport#CarTesting#NewRelease#Mitsubishi#SUV#AutoNews#Innovation#Auto