@QuietWorld · Post #7554 · 12.08.2020 г., 11:41
the tone and the way you talk about something, makes a difference. #fact@quietworld🍃
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
Пребарај: #fact
@QuietWorld · Post #7554 · 12.08.2020 г., 11:41
the tone and the way you talk about something, makes a difference. #fact@quietworld🍃
Hashtags
@QuietWorld · Post #6420 · 30.04.2019 г., 17:54
true 💯💯 #fact@quietworld🍃
Hashtags
@PlanetRong · Post #3482 · 11.02.2020 г., 17:18
#fact 我能听到 19500Hz 的声音。 20000Hz 有微弱听觉,戴上耳机能感觉到。 18000Hz 以下有较敏锐的听觉。 (我能确定听到的不是因为各种原因导致的杂音,高频正弦波的听感还是很好区分的
Hashtags
@whysoserioushmmm · Post #3470 · 26.04.2020 г., 11:30
Celebrities need us more than we need them. #fact
Hashtags
@whysoserioushmmm · Post #3274 · 20.03.2020 г., 09:57
Karma has no menu. You get served what you deserve. #fact @whysoserioushmmm
Hashtags
@whysoserioushmmm · Post #3266 · 19.03.2020 г., 06:40
Even though hand sanitizer kills 99.9% of germs, only 0.1% of germs actually make us sick #fact @whysoserioushmmm
Hashtags
@whysoserioushmmm · Post #3191 · 02.03.2020 г., 12:35
Bullet proof vests, fire escapes, windshield wipers and laser printers were all invented by women. #fact @whysoserioushmmm
Hashtags
@astronomic · Post #3032 · 10.10.2022 г., 17:13
Ceres accounts for one third of the mass in the asteroid belt. #Fact
Hashtags
@PlanetRong · Post #2997 · 07.01.2020 г., 17:28
#fact 两天总睡眠时间不足4h
Hashtags
@whysoserioushmmm · Post #2914 · 31.01.2020 г., 15:54
Vitamin D Doesn't come from the sun🌞; it comes from our skin. Sunlight☀️ is the factor that converts cholesterol in our skin to vitamin D3. #fact @whysoserioushmmm
Hashtags
@whysoserioushmmm · Post #2913 · 31.01.2020 г., 15:54
Mobile phones have 18 times more bacteria than Toilet🚽 Handles. #fact @whysoserioushmmm
Hashtags
@whysoserioushmmm · Post #2911 · 31.01.2020 г., 15:54
A 2014 study estimates that the human body consists of 39 trillion bacteria & 30 trillion human cells. #fact @whysoserioushmmm
Hashtags