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

Резултати

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

Пребарај: #january

当前筛选 #january清除筛选
APKPure_Official

@apkpurechannel · Post #2836 · 24.01.2026 г., 11:19

🆓REDEEM CODES🆓 🎁🚀AFK Arena Redeem #Codes 💫📌#January 2026 🌟🎁New Code:【 vdj82fht4r 】 💎💎💎Redeem now for 3,000 diamonds, ten time emblems, ten stargazer scrolls, and ten common scrolls!!! 👀All the Active AFK Arena Codes. Add @APKFreeDownloader_Bot to get any apk you want.

APKPure_Official

@apkpurechannel · Post #2830 · 18.01.2026 г., 11:47

🆓REDEEM CODES🆓 🎁🚀AFK Arena #Codes | #January 2026 💫🌟4 New Codes Released This Week! 👉Code 1:【 DON2026classic 】 👉Code 2:【 ujqrukd2at 】 👉Code 3:【 uj5fs5z58s 】 👉Code 4:【 u4fctemje2 】 🎁💎Redeem now for 2.2k diamond any many more!!! 🔗All working AFK Arena codes. Add @APKFreeDownloader_Bot to get any apk you want.

悦读「优质少量RSS聚合」

@Dailyrss · Post #13241 · 27.01.2026 г., 00:45

Wikipedia每日一图(#January 27, 2026)https://ift.tt/Msrmcyu “Selection” of Hungarian Jews on the ramp at Auschwitz-II-Birkenau in German-occupied Poland, May/June 1944, during the final phase of the Holocaust. Jews were sent either to forced labor or the gas chambers. 81 years ago today, on January 27, 1945, Auschwitz was liberated by the Red Army. Today is also International Holocaust Remembrance Day.. 了解更多 . #Wikipedia每日一图

悦读「优质少量RSS聚合」

@Dailyrss · Post #13240 · 26.01.2026 г., 00:45

Wikipedia每日一图(#January 26, 2026)https://ift.tt/EsDR49p Apple orchards after snowfall in Sangla in the northern Indian state of Himachal Pradesh. India has the second largest area under apple cultivation in the world and is the fifth largest producer of the fruit globally. More than 90% of India's apple production comes from just two of its northern Himalayan states: Jammu and Kashmir, and Himachal Pradesh. Today is Republic Day in India.. 了解更多 . #Wikipedia每日一图

悦读「优质少量RSS聚合」

@Dailyrss · Post #13237 · 23.01.2026 г., 00:45

Wikipedia每日一图(#January 23, 2026)https://ift.tt/oNaVYGk Northwest view of Yugar village and fields, viewed from Phuktal Gompa. Elevation 3,850 m (12,630 ft)), on the left bank of the Tsarap River (elev. 3,820 m (12,530 ft)). In this arid terrain above the tree line, villagers rely on water from the snow-fed Phu Nala (flowing from centre to bottom) for their fields. Zanskar, Ladakh, India. 了解更多 . #Wikipedia每日一图

ПретходнаСтраница 1 од 5Следна