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

Резултати

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

Пребарај: #bubblemaps

当前筛选 #bubblemaps清除筛选
Airdrop Comic

@airdropcomic · Post #1910 · 24.03.2025 г., 09:54

🚀BubbleMaps (BMT) Airdrop is LIVE on Binance! 🎉 Earn FREE $BMT with Retroactive BNB SimpleEarn Subscriptions! If you held BNB in Simple Earn (Flexible/Locked) or On-Chain Yields (March 2 - 6, 2025) you may qualify! 🎁 🔥 Why BubbleMaps? ✔️ Track token movements & uncover hidden links 🔍 ✔️ Integrated with CoinGecko, DexScreener & more 💡 ✔️ BubbleMaps V2 unlocks new features with $BMT🚀 📈$BMT Trading Pairs on Binance: 🔹 BMT/USDT | BMT/USDC | BMT/BNB | BMT/FDUSD | BMT/TRY ⚙️ How to Participate? 📥Check Your Eligibility & Claim Here: 👉Register & Claim Now 📢Stay Updated & Join Our Community: 🔗BubbleMaps Official Telegram ®Note - Please do your own research (DYOR) before joining to any airdrops project, also airdrop is 100% free. Don't send any fee or penny for receiving airdrop tokens #BubbleMaps#BMT#Binance#Airdrop#Crypto

Venture Village Wall 🦄

@venturevillagewall · Post #3880 · 15.01.2025 г., 07:00

Simplifying Processes: A Billion-Dollar Idea A new startup aims to simplify image and video management, outperforming Dropbox. This innovation has attracted nearly $70 million in investments, capitalizing on a $2 trillion creative economy. Additionally, Bubblemaps has launched its BMT token on Solana, offering on-chain analytics and community governance, hinting at a potential airdrop. Deribit, a major crypto derivatives exchange, is exploring acquisition offers, valued between $4-5 billion, with Kraken showing interest. #Startup#Dropbox#Investment#CreativeEconomy#Bubblemaps#BMT#Token#Solana#Crypto#ETFs#Derivatives#Kraken#Airdrop#VC#AI#Blockchain#Innovation#Finance

Crypto M - Crypto News

@CryptoM · Post #65295 · 12.04.2026 г., 15:15

🚀 Crypto Analyst Manya Releases Research Tool Rankings Crypto analyst manya has released a ranking of personal research tools. According to ChainCatcher, the rankings categorize tools into different levels based on their effectiveness. The S-tier includes Dune and frontrun.pro, while the A-tier features Coinglass, RootData, Drop, MetaSleuth, and DefiLlama. B-tier tools comprise Arkham, Bubblemaps, Dexscreener, Surf, Nansen, and CoinMarketCap. C-tier tools include Cryptorank and others. #CryptoAnalyst#ResearchTools#CryptoRanking#Dune#frontrunpro#Coinglass#RootData#Drop#MetaSleuth#DefiLlama#Arkham#Bubblemaps#Dexscreener#Surf#Nansen#CoinMarketCap#Cryptorank