TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

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

Резултати

Пронајдени 11 слични објави

Пребарај: #akashap

当前筛选 #akashap清除筛选
Pensive|

@PensivePost · Post #5438 · 28.09.2021 г., 13:10

#review#AkashAP Contemplating about this quote, it's quite interesting but confusing as well. After the mistake, why would a good man spend time in sorrow instead of learning. And a bad man too... Please describe.

Pensive|

@PensivePost · Post #5442 · 30.09.2021 г., 04:13

I am blind not with the eye, but with the heart; 'Trust' was one of them. #AkashAP#quote#review Meaning : i was blind with the heart (A kind man) because of that i did trust on someone more than myself. Every good people or a kind man did it once. 👍😁

Pensive|

@PensivePost · Post #5417 · 24.09.2021 г., 06:04

When she is dismal, The heart cries blart, An auspicious time, it was When I met her: The world says My heart is a stone heart, So how did this heart Fall in love with her? The sun isn't so beautiful When it rises: I forget my self When i look in her eyes. #AkashAP#review#shortpoem

Pensive|

@PensivePost · Post #5571 · 29.12.2021 г., 05:25

She's one in a billion!! Her smell's like rosemary perfume, And golden hair's like sonagachi; The lips are looking like amaryllis; The face is like the morning sun; Body is as soft as the balloon; Her voice is as sweet as elaichi; Brown eyes are like killing us – And such beauty is only one!! • Difficult Words • Sonagachi - known as Golden Tree Amaryllis - known as Red Beautiful Flower Elaichi - Cardamom #AkashAP#review#poem#oldone#noshare