@animal_fighting · Post #274 · 26.09.2022 г., 15:16
Buffalo VS Man Unlucky "rider" #buffalo🐃
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
Пребарај: #buffalo
@animal_fighting · Post #274 · 26.09.2022 г., 15:16
Buffalo VS Man Unlucky "rider" #buffalo🐃
Hashtags
@animal_fighting · Post #254 · 18.09.2022 г., 10:04
Buffalo VS Tourists A safari turned to be a bit risky #buffalo🐃
Hashtags
@animal_fighting · Post #200 · 07.08.2022 г., 11:03
Buffalo VS Car Wrong choice of a parking place... #buffalo🐃
Hashtags
@animal_fighting · Post #4 · 22.04.2022 г., 07:55
Buffalo VS Buffalo The one that is more persistant wins! #buffalo
Hashtags
@animal_fighting · Post #316 · 27.10.2022 г., 16:03
Buffalos VS Lions A calf is rescued 💪🏻 #buffalo🐃#lion🦁
@animal_fighting · Post #314 · 25.10.2022 г., 16:03
Buffalo VS Lion Bad position for a defence #buffalo🐃#lion🦁
@animal_fighting · Post #293 · 05.10.2022 г., 10:04
Buffalos VS Lions The whole herd returned to help a mother saving her calf #buffalo🐃#lion🦁
@animal_fighting · Post #275 · 27.09.2022 г., 10:04
Buffalos VS Lions All for one! #buffalo🐃#lion🦁
@animal_fighting · Post #265 · 23.09.2022 г., 15:04
Lions VS Buffalos Psychological attack #lion🦁#buffalo🐃
@animal_fighting · Post #259 · 20.09.2022 г., 15:04
Buffalo VS Lion But buffalo has enough power to beat the king of beasts💪🏻 #buffalo🐃#lion🦁
@animal_fighting · Post #241 · 12.09.2022 г., 10:05
Lions VS Buffalo A family quarrel gave him a second birth #lion🦁#buffalo🐃
@animal_fighting · Post #236 · 07.09.2022 г., 18:03
Lion VS Buffalo Total victory #lion🦁#buffalo🐃