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

Резултати

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

Пребарај: #sgweathergrams

当前筛选 #sgweathergrams清除筛选
NEA Singapore

@NEASingapore · Post #589 · 12.07.2023 г., 01:02

Did you manage to catch these pastel-coloured altocumulus clouds at sunset? When the sun is at a low angle on the horizon, sunlight travels across a longer distance through the atmosphere before reaching our eyes. As a result, blue colours are scattered by atmospheric particles, leaving behind brilliant hues of pink, orange and yellow. 📷: peiqiitohh #SGWeathergrams#WeatherWednesday

NEA Singapore

@NEASingapore · Post #565 · 14.06.2023 г., 00:31

If you were in the Newton area on 25 May, you may have spotted this huge woolly blanket in the sky! This blanket of dense clouds was formed as the top of a cumulonimbus cloud collapsed following strong thunderstorms across Singapore earlier that morning. Named “cirrus spissatus”, these rarer upper atmosphere clouds are thicker and denser, and would block out the sun. The Latin word “spissatus” in its name describes its thicker appearance. 📷 Photo by _quietude__ #SGWeathergrams#WeatherWednesday

NEA Singapore

@NEASingapore · Post #78 · 15.07.2020 г., 00:30

The mesmerising patterns formed by these beautiful stratocumulus clouds, seem to be reminding us to keep a safe distance from each other as we go about our daily activities. Tag us in your #SGWeathergrams on Instagram so that we can share your beautiful captures with others! #WeatherWednesday 📷: infectiousj

NEA Singapore

@NEASingapore · Post #105 · 22.09.2020 г., 07:45

Hello Halo! Did you spot it this afternoon? These faint coloured rings encircling the sun are formed by the refraction of the light through ice crystals in high-level clouds under relatively clear conditions. #SGWeathergrams#SGWeather

NEA Singapore

@NEASingapore · Post #90 · 12.08.2020 г., 00:30

While an impending thunderstorm looms, blue skies and fluffy clouds shine through in the distance. Tag us in your #SGWeathergrams posts on Facebook & Instagram so we can share it on #WeatherWednesdays. :) 📷: siewjunjie

NEA Singapore

@NEASingapore · Post #579 · 05.07.2023 г., 01:01

#WeatherWednesday#throwback to the sunrise on 17 Jun, when we were greeted by this beautiful scattering of cirrocumulus stratiformis clouds. The Latin word “stratiformis” means “stretched out”, referring to its irregular, dotted, blanket-like appearance. 📷 Photo by knifematchneedle #SGWeathergrams