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

Пребарај: #arvr

当前筛选 #arvr清除筛选
Venture Village Wall 🦄

@venturevillagewall · Post #4143 · 13.02.2025 г., 19:00

Steve Yun Speaks at Consensus HK On February 20, Steve Yun from TON Foundation will present at Consensus HK, discussing 'Emerging Markets on the Road to Financial Freedom.' Join to explore DeFi's future and the impact of evolving regulations on Web3. Details here. ⚡️ OpenSea announces OS2 beta version and airdrop. Read more 🚓 In Thailand, Russians arrested for stealing Bitcoin worth $16.5 million. Read more 🧠 A look into the Metaverse and AR/VR projects you might have missed. Read more 🐋 VanEck says some US states will buy $23.5 billion in Bitcoin. Read more 👀 A new Bitcoin-ETF linked structured bond launches in Russia. Read more 🧐 JPMorgan identifies condition for Tether's compliance with US regulations. Read more ❌ Illegal Bitcoin farm shut down near Irkutsk. Read more 🤖 Sam Altman discusses features of GPT-4.5 and GPT-5. Read more 💫 BNB recovered losses following 2025 roadmap release. Read more 🔎 Ethereum Foundation allocates $120 million to DeFi protocols. Read more 👾 WLFI co-founder's X-account hacked to promote a scam. Read more 🔥 Former Greek finance minister criticizes Bitcoin maximalists. Read more #Finance#DeFi#Web3#Bitcoin#OpenSea#Crypto#Ethereum#EthereumFoundation#Cryptocurrency#Blockchain#Thailand#Regulation#CryptoNews#SamAltman#AI#Innovation#Technology#Investment#Metaverse#ARVR#VanEck