@danielmkovalik · Post #2227 · 22.04.2025 г., 19:16
My reflections upon the passing of #PopeFrancis
Hashtags
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
Пребарај: #popefrancis
@danielmkovalik · Post #2227 · 22.04.2025 г., 19:16
My reflections upon the passing of #PopeFrancis
Hashtags
@livanpolitika · Post #1227 · 21.04.2025 г., 11:18
🇱🇧🇻🇦🌲✝️ Сами Жмайель: Его Святейшество Папа Франциск, человек мира, справедливости и гуманности. Мы помним его поддержку Ливана и его постоянные молитвы за его народ. Мы выражаем свои соболезнования Святейшему Престолу и просим Бога помиловать #PopeFrancis и вдохновить мир его ценностями
Hashtags
@WorldNews · Post #74163 · 16.04.2026 г., 14:45
Pope warns of world ravaged by ‘tyrants’ in the wake of Trump attacks [Read FullArticle] @WorldNews#PopeFrancis#Trump#WorldNews
Hashtags
@WorldNews · Post #74033 · 11.04.2026 г., 11:54
‘God does not bless any conflict’: pope issues new rebuke over Iran war [Read FullArticle] @WorldNews#PopeFrancis#IranWar#WorldNews
Hashtags
@BarykinaLiubov · Post #2619 · 21.04.2026 г., 18:00
One year since the death of Pope Francis 🙏🙏🙏 21.04.2026 #VaticanCity #PopeFrancis #LiubovBarykina
@WorldNews · Post #74088 · 13.04.2026 г., 11:54
Pope says he is not afraid of Trump after criticism over war in Iran [Read FullArticle] @WorldNews#PopeFrancis#TrumpNews#IranWar
Hashtags
@WorldNews · Post #74169 · 16.04.2026 г., 18:59
Pope says ‘world is being ravaged by a handful of tyrants’ amid feud with Trump’s White House [Read FullArticle] @WorldNews#PopeFrancis#Trump#WhiteHouse
Hashtags
@WorldNews · Post #73884 · 05.04.2026 г., 07:14
At Easter vigil, Pope Leo urges world not to grow numb to war [Read FullArticle] @WorldNews#PopeFrancis#EasterVigil#WorldNews
@WorldNews · Post #73694 · 29.03.2026 г., 12:39
Pope: God rejects prayers of leaders who wage wars | New Straits Times [Read FullArticle] @WorldNews#PopeFrancis#WarAndPeace#WorldNews
@WorldNews · Post #74112 · 14.04.2026 г., 09:39
Pope Leo says he does not fear Trump after attack over Iran peace appeal [Read FullArticle] @WorldNews#PopeFrancis#Trump#IranPeace
Hashtags
@WorldNews · Post #74363 · 25.04.2026 г., 11:29
Pope Leo condemns capital punishment amid US execution push [Read FullArticle] @WorldNews#PopeFrancis#CapitalPunishment#USExecutions
@WorldNews · Post #74114 · 14.04.2026 г., 10:39
Pope: We have moral obligation to protect civilians from horrific effects of war - Vatican News [Read FullArticle] @WorldNews#PopeFrancis#CiviliansInWar#VaticanNews