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

Резултати

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

Пребарај: #timcook

当前筛选 #timcook清除筛选

🅰️🩸🩸🩸🩸 📱Marketers criticize Apple for the fact that their copywriting has lost its brevity and former magic. The texts have become heavy, overloaded and unmemorable. Long-time fans of the company write that Steve Jobs would never have brought the company to such mediocrity. Tim Cook did not take courses in effective presentations 😮 What do you think about it? #Apple#Marketing#TimCook MARKHEMIST

🩸🩸🩸🩸🩸🩸1️⃣6️⃣ 📱iPhone 16 pre-orders have fallen short of Apple's expectations. The company sold 37 million smartphones in the first weekend, down 12% from last year. The iPhone 16 Pro is selling worse than the iPhone 15 Pro, but the base iPhone 16 is selling better than last year's model. Tim Cook: Where will you go when I release iOS 18 and ruin your batteries? 😄 😄 Have you already ordered new IPhone? #Iphone#Apple#TimCook MARKHEMIST

NEWS 鏈新聞-ABMedia

@abmedia_news · Post #24464 · 08.05.2026 г., 11:30

【📜 政策監理|川普邀輝達、蘋果、波音等企業執行長隨行訪中,川習會商機引發企業搶進】 #川習會#波音#TimCook 川普下週邀輝達與高通執行長訪中,由財政部長貝森特負責協調名單。 波音正爭取 500 架 737 MAX 等數百億美元訂單,庫克則處於關稅威脅下的抉擇兩難。即便商機龐大,官方仍強調峰會核心為政治關係而非具體商業協議。 📍閱讀全文: https://abmedia.io/trump-administration-plans-invite-tech-ceos 📍 訂閱鏈新聞頻道:https://linktr.ee/abmedia.io

Crypto M - Crypto News

@CryptoM · Post #64715 · 09.04.2026 г., 15:40

🚀 Apple Executives Sell $24.2 Million in Shares Amid Stock Decline Apple executives Tim Cook and Deirdre O'Brien have sold a total of $24.2 million worth of AAPL shares in April, according to SEC filings. Cook sold 64,949 shares for $16.5 million, while O'Brien sold 30,002 shares for $7.67 million. According to NS3.AI, Apple stock was trading at $258.90 and had declined nearly 4.5% year-to-date. #Apple#TimCook#DeirdreOBrien#AAPL#StockDecline#SECfilings#SharesSale#AppleStock