@viral_today · Post #3281 · 14.01.2025 г., 11:33
Wing suit zip line @Viral_Today / #extreme
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
Пребарај: #extreme
@viral_today · Post #3281 · 14.01.2025 г., 11:33
Wing suit zip line @Viral_Today / #extreme
Hashtags
@viral_today · Post #3274 · 12.01.2025 г., 17:32
Skydiving is no longer enough to tickle the nerves @Viral_Today / #extreme
Hashtags
@viral_today · Post #3257 · 09.12.2024 г., 18:23
Threading the needle in a wingsuit—precision, skill, and pure adrenaline! @Viral_Today / #extreme
Hashtags
@viral_today · Post #3226 · 19.11.2024 г., 13:30
GoPro shared an intense first-person video of a Chilean firefighter battling a house fire. While the house was nearly lost, no one was harmed. @Viral_Today / #extreme
Hashtags
@viral_today · Post #3207 · 13.11.2024 г., 15:05
Two years in the making, Sebastian pulled off the ultimate feat: skydiving with a surfboard from 365 meters (1,200 feet) high and landing perfectly into a wave. @Viral_Today / #extreme
Hashtags
@viral_today · Post #3196 · 08.11.2024 г., 11:30
This jump is 300 meters (984 feet) underground, 27 meters (88 feet) high, 16 meters (52 feet) long, and into 6°C (43°F) water. @Viral_Today / #extreme
Hashtags
@viral_today · Post #3182 · 01.11.2024 г., 12:15
Luckily the right parachute opened @Viral_Today / #extreme
Hashtags
@viral_today · Post #3172 · 29.10.2024 г., 14:30
Skier avoids avalanche by paragliding over it @Viral_Today / #extreme
Hashtags
@viral_today · Post #3112 · 11.10.2024 г., 14:30
Stuntman view during a circus performance @Viral_Today / #extreme
Hashtags
@viral_today · Post #3109 · 10.10.2024 г., 16:52
Jumping into the cloud @Viral_Today / #extreme
Hashtags
@viral_today · Post #3059 · 26.09.2024 г., 10:31
This guy used a paraglider like a swing @Viral_Today / #extreme
Hashtags
@viral_today · Post #3036 · 20.09.2024 г., 14:30
This one’s not for the faint of heart. ‘Satan’s Ridge’—the treacherous, infamous traverse between Capitol and Snowmass Mountains in Colorado—is sure to make your palms sweaty. @Viral_Today / #extreme
Hashtags