@TFGames · Post #1972 · 21.01.2024 г., 11:11
#NRO #2 #GAMES https://testflight.apple.com/join/E6eOLMAM
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
Пребарај: #nro
@TFGames · Post #1972 · 21.01.2024 г., 11:11
#NRO #2 #GAMES https://testflight.apple.com/join/E6eOLMAM
@TestFlightX · Post #34577 · 10.11.2024 г., 23:35
#NRO#CENTER https://testflight.apple.com/join/xbAhW8SM
@TestFlightX · Post #34271 · 12.10.2024 г., 03:54
#NRO#PURE https://testflight.apple.com/join/SQkHkuFF
@TestFlightX · Post #34439 · 03.11.2024 г., 15:18
#NRO#BON https://testflight.apple.com/join/NAFXDvJq
@TFGames · Post #1591 · 21.12.2023 г., 13:10
#NRO#NEW#GAMES https://testflight.apple.com/join/XP3pyfYc
@TFGames · Post #1962 · 20.01.2024 г., 10:27
#NRO#RONG #2 #GAMES https://testflight.apple.com/join/i9G8DrVa
@TFGames · Post #1825 · 04.01.2024 г., 18:14
#NRO#SPEED#GAMES https://testflight.apple.com/join/Yw3RBuRK
@TFGames · Post #2224 · 26.02.2024 г., 18:38
#NRO#SAGA#GAMES https://testflight.apple.com/join/VxFTh6Zl
@TFGames · Post #1988 · 23.01.2024 г., 23:37
#NRO#SCHOOL#GAMES https://testflight.apple.com/join/DKfIKjON
@TFGames · Post #1785 · 02.01.2024 г., 00:56
#NRO#SAGA#GAMES https://testflight.apple.com/join/VxFTh6Zl
@TFGames · Post #1667 · 26.12.2023 г., 21:12
#NRO#PRIVATE#GAMES https://testflight.apple.com/join/xJGbT3vr
@TFGames · Post #1977 · 22.01.2024 г., 02:50
#NRO#META#GAMES https://testflight.apple.com/join/0wIZcVGa