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

Резултати

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

Пребарај: #batroun

当前筛选 #batroun清除筛选
Marwa Osman/MidEaStream

@Marwa_OsmanLB · Post #3579 · 02.11.2024 г., 16:49

Lebabes citizen Imad Amhaz, who was abducted in Batroun by Israeli Forces, had been attending a month-long captain’s training course at a private maritime institute located in the area of Batroun. Amhaz was reportedly staying alone in a rented apartment in Batroun. Israeli media claim Amhaz he may have ties to Hezbollah despite the fact that Amhaz is a civilian maritime captain of commercial vessels and is currently undergoing training at the private marine institution in Batroun. Military sources revealed that the Israeli soldiers involved in the Batroun abduction numbered between 20 and 25, supported by additional escort personnel, with Lebanese army intelligence working to confirm the exact numbers. According to the National News Agency, Batroun residents confirmed that the military force led Amhaz to the shore and swiftly departed with him on high-speed boats into the open sea. #Lebanon#Batroun#IsraeliOperation#UNIFIL#LebanonUnderAttack

Marwa Osman/MidEaStream

@Marwa_OsmanLB · Post #3587 · 04.11.2024 г., 17:01

Although an Israeli elite unit which is tasked with the most difficult military operations, the history of "Shayetet 13" is full of failed operations. Israeli Security Minister Yoav Gallant, then commander of the unit that fell in a Hezbollah ambush in South Lebanon in 1997, acknowledged last year the ongoing psychological consequences on Israel and its military and security leaders due to the unforgettable ambush. #Shayetet13#Batroun#Ansariyeh#Hezbollah#SouthLebanon#Israel#YoavGallant