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

Резултати

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

Пребарај: #russiaday2025

当前筛选 #russiaday2025清除筛选
Russian Mission to EU

@RussianMissionEU · Post #1957 · 11.06.2025 г., 15:30

🇷🇺 On 10 June 2025, the Russian Embassy in the Kingdom of Belgium and the Permanent Mission of Russia to the EU and Euratom held a state reception on the eve of Russia Day. 🤝 Heads of diplomatic missions of the CIS Member States, countries of Asia, Africa, the Middle East, and Latin America, as well as representatives of international organizations, business circles, non-governmental organizations and Russian compatriots joined Russian diplomats to mark the National Day. #RussiaDay2025

Russian House Brussels-Europe

@rushousebrussels · Post #2457 · 12.06.2025 г., 07:14

⬆️⬆️⬆️ 🇷🇺 Happy Russia Day! June 12 is a special date for everyone who loves and cherishes our country, its rich culture, centuries-old history, and remarkable diversity. It is a day when we proudly remember our roots, traditions, and spiritual values that unite us, wherever we may be. The Russian House in Brussels warmly congratulates you on this important holiday! May love for our homeland, respect for its history, and a desire to create and preserve live in the hearts of us all. Happy holiday, dear friends! Wishing you prosperity, inspiration, and new achievements! #ДеньРоссии#РусскийДомБрюссель#RussiaDay2025