@fporn · Post #1530 · 29.03.2021 г., 19:05
Honey Garlic Butter Baked Salmon #Seafood
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
Пребарај: #seafood
@fporn · Post #1530 · 29.03.2021 г., 19:05
Honey Garlic Butter Baked Salmon #Seafood
Hashtags
@fporn · Post #1499 · 09.06.2020 г., 08:15
Easy-Peasy Shrimp Ziti #Seafood
Hashtags
@fporn · Post #1487 · 29.01.2020 г., 09:47
Dab with Vinegar Butter #Seafood
Hashtags
@fporn · Post #1464 · 04.08.2019 г., 20:05
Browned Butter Honey Garlic Shrimp #Seafood
Hashtags
@fporn · Post #1454 · 23.04.2019 г., 15:12
Cajun Garlic Shrimp and Grits #Seafood
Hashtags
@fporn · Post #1414 · 04.11.2018 г., 14:12
Garlic Butter Herb Scallops #Seafood
Hashtags
@fporn · Post #1387 · 20.09.2018 г., 20:38
Basil Pomodoro Shrimp with Creamed Corn Polenta #Seafood
Hashtags
@fporn · Post #1358 · 31.05.2018 г., 19:03
Pan-Fried Whole Fish (Pompano) with Sambal Matah #Seafood
Hashtags
@fporn · Post #1322 · 30.03.2018 г., 16:21
Roasted Salmon with Spring Pesto #Seafood
Hashtags
@fporn · Post #1302 · 11.03.2018 г., 14:18
Glazed Salmon with Coconut Rice #Seafood
Hashtags
@fporn · Post #1265 · 23.01.2018 г., 14:51
Easy Honey Garlic Shrimp #Seafood
Hashtags
@fporn · Post #1257 · 13.01.2018 г., 14:03
Creamed Spinach Tortellini and Shrimp #Seafood
Hashtags