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

Резултати

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

Пребарај: #gametymeme

当前筛选 #gametymeme清除筛选
G-AGENTS AI 🤖 | News

@gametynews · Post #327 · 05.09.2024 г., 22:00

🔔 Reminder: Gamety Meme Battle is ON! 🔔 Hey Fighters, Just a heads-up! Our Gamety Meme Battle is in full swing from August 25 to September 7. It’s your chance to shine with hilarious memes and snag some cool rewards! 🎯 How to Enter: 1. Create a funny Gamety meme. 2. Post it on Twitter with the hashtags: #Fighter#Punch2Earn#Gamety#P2E#GAMETYMEME. 3. Tag us: @gametyio. 4. Share your meme and Twitter link in our Discord Memes channel. 🎁Rewards: -350 XP just for entering! -Top 20 memes get an extra 100 XP + Meme Fighter role. -The top 5 with the most Discord reactions win $20 each! ⚔️ Voting: Starts Monday and continues until the end. Drop your memes in Discord and rally those reactions! Don’t miss out—get those memes in and let’s see what you’ve got! 🎉 📲 Join our awesome crew on Discord and stay updated: https://discord.gg/metafighter Tweet 🔗: https://x.com/gametyio/status/1831814397464842286 Like, RT and comment the post to make some noise 📎Important Links: Website | X | Chat (FULL) | Indonesian Chat | African Chat | Discord | Announcement | YouTube | Medium | New Bot

G-AGENTS AI 🤖 | News

@gametynews · Post #298 · 24.08.2024 г., 22:00

🔥 Gamety Meme Battle: Time to LOL! 🔥 Hey Fighters, Get your meme game on! Our epic Gamety Meme Battle is kicking off from Sunday, August 25 to September 7. Ready to show off your creativity and humour? 🎯 How to Enter: 1. Create a hilarious meme about Gamety. 2. Post it on Twitter with the hashtags: #Fighter#Punch2Earn#Gamety#P2E#GAMETYMEME. 3. Tag us @gametyio., August 25 to September 7. Ready to show off your creativity and humour? 4. Share your meme and Twitter link in our Discord Memes channel. 🎁 Rewards: -350 XP just for entering! -Top 20 memes get an extra 100 XP + Meme Fighter role. -The top 5 with the most Discord reactions win $20 each! ⚔️ Voting: Voting starts Monday and runs until the last day. Drop your memes in Discord and get those reactions rolling! Ready, set, meme! 🎉🎉 Tweet 🔗: https://x.com/gametyio/status/1827465607689990282 Like, RT and comment the post to make some noise 📲 Join our awesome crew on Discord and stay updated: https://discord.gg/metafighter 📎Important Links: Website | X | Chat (FULL) | Indonesian Chat | African Chat | Discord | Announcement | YouTube | Medium | New Bot