@doniyorieltss · Post #2131 · 30.08.2024 г., 14:35
When you dream up your perfect life, you think about how you're seen, rather than what your daily tasks include 101 essays that will change the way you think #insights
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
Пребарај: #insights
@doniyorieltss · Post #2131 · 30.08.2024 г., 14:35
When you dream up your perfect life, you think about how you're seen, rather than what your daily tasks include 101 essays that will change the way you think #insights
Hashtags
@doniyorieltss · Post #2130 · 29.08.2024 г., 14:35
You are more in love with ideas than you are with work and processes required to make them reality 101 essays that will change the way you think #insights
Hashtags
@doniyorieltss · Post #2126 · 28.08.2024 г., 14:35
If you don't know what to do, you don't know what's wrong. If you don't know what's wrong, it is because some part of you is resisting seeing it 101 essays that will change the way you think #insights
Hashtags
@doniyorieltss · Post #2125 · 19.08.2024 г., 14:36
Clarity comes from doing, not thinking about doing 101 essays that will change the way you think #insights
Hashtags
@doniyorieltss · Post #2124 · 18.08.2024 г., 14:35
The best things will not make sense - not initially, at least 101 essays that will change the way you think #insights
Hashtags
@doniyorieltss · Post #2123 · 17.08.2024 г., 14:35
To fully accept your life - the highs, lows, good, bad - is to be grateful for all of it, and to know that the "good" teaches you well, but the "bad" teaches you better 101 essays that will change the way you think #insights
Hashtags
@doniyorieltss · Post #2122 · 16.08.2024 г., 14:34
Sometimes the way light enters us is, in fact, through the wound 101 essays that will change the way you think #insights
Hashtags
@doniyorieltss · Post #2121 · 15.08.2024 г., 14:34
What you learn and who you become is more important than how you temporarily feel 101 essays that will change the way you think #insights
Hashtags
@doniyorieltss · Post #2120 · 14.08.2024 г., 14:34
The people who were able to hurt you most were also the people whom you were able to love the most 101 essays that will change the way you think #insights
Hashtags
@doniyorieltss · Post #2118 · 13.08.2024 г., 14:36
The road to hell was paved with good intentions 101 essays that will change the way you think #insights
Hashtags
@doniyorieltss · Post #2117 · 12.08.2024 г., 14:44
Defensiveness is born of fear; assertiveness is born of confidence 101 essays that will change the way you think #insights
Hashtags
@doniyorieltss · Post #2116 · 11.08.2024 г., 14:34
Life isn't about being "certain", it's about trying anyway 101 essays that will change the way you think #insights
Hashtags