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

TGINSIGHT SIMILAR POSTS

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

Изворен канал @pythonotes · Post #418 · 9 мар.

Оператор pipe позволяет писать более компактный код, реализуя логику объединения данных (Union). Важно помнить, что его поведение зависит от контекста. Побитовые операции (логическое OR) result = 5 | 3 # 5 (0101) | 3 (0011) = 7 (0111) Самое главное - не путать с оператором or, это другое! Объединение множеств set_a = {1, 2, 3} set_b = {3, 4, 5} set_c = set_a | set_b # {1, 2, 3, 4, 5} set_c |= {5, 6} # {1, 2, 3, 4, 5, 6} Слияние словарей dict_1 = {"a": 1, "b": 2} dict_2 = {"b": 3, "c": 4} merged = dict_1 | dict_2 # {'a': 1, 'b': 3, 'c': 4} merged |= {"d": 5} # {'a': 1, 'b': 3, 'c': 4, 'd': 5} Аннотации типов, заменяет Union def process_data(value: int | str) -> None: print(value) Допустимо использовать в isinstance или issubclass isinstance(3, int | float) # True Паттерн-матчинг status_code = 404 match status_code: case 200 | 201 | 204: print("OK") case 400 | 404 | 500: print("ERROR") Для использования в своих классах требуется переопределить метод __or__ Так же нашел библиотеку pipe которая добавляет еще много возможностей. Рекомендую ознакомиться ;) #basic

Hashtags

Резултати

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

Пребарај: #energyweaponization

当前筛选 #energyweaponization清除筛选
Red Nile

@rednile12 · Post #10422 · 17.12.2025 г., 17:16

🔺Continuation from above @rednile12 🛢️ What’s really driving prices? 🔹Oversupply dominates ▪️US output at a record ~13.8 million bpd ▪️OPEC+ (led by Russia) adding 137,000 bpd in December ▪️IEA warns of a 4+ million bpd surplus in 2026 🔹Venezuela factor is limited (for now) ▪️Venezuela exports ~800–900k bpd (mostly to China) ▪️Blockade mainly targets shadow fleet tankers ▪️Estimated 300–500k bpd at risk ▪️OPEC spare capacity can easily offset this 🔹Demand is weak ▪️Sluggish global growth ▪️China slowdown ▪️Energy transition pressures ⚠️ Strategic takeaway This isn’t about oil fundamentals—it’s about US coercive diplomacy. 🔹 Trump’s move: ▪️Injects short-term volatility ▪️Signals renewed energy weaponization ▪️Uses sanctions + naval pressure, not markets, to discipline rivals 🔹 But in an oversupplied world, geopolitics can only spike prices temporarily. 📉Bottom line: Unless the blockade expands or collides with another major disruption, oil prices remain structurally bearish, with volatility driven by headlines—not fundamentals. 🔴 Follow more insights: @rednile12 | #Red_Nile_Geopolitics #OilPolitics#TrumpDoctrine#Venezuela#EnergyWeaponization#Geopolitics#OPEC#WTI#Brent#GlobalEconomy#RedNileAnalysis