@SINLINEAMXnoticias · Post #32019 · 06.05.2026 г., 13:23
"¿Quién es quién?" | Cartón de #SinLínea✍🏻
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
Пребарај: #sinlínea
@SINLINEAMXnoticias · Post #32019 · 06.05.2026 г., 13:23
"¿Quién es quién?" | Cartón de #SinLínea✍🏻
Hashtags
@SINLINEAMXnoticias · Post #31948 · 04.05.2026 г., 13:28
"PRIuebas" | Cartón de #SinLínea✍🏻
Hashtags
@SINLINEAMXnoticias · Post #31857 · 30.04.2026 г., 13:41
"Ajuste de reflector" | Cartón de #SinLínea✍🏻
Hashtags
@SINLINEAMXnoticias · Post #31803 · 28.04.2026 г., 14:09
E"RenunCIA estratégica" | Cartón de #SinLínea✍🏻 @MaruCampos_G
Hashtags
@SINLINEAMXnoticias · Post #31705 · 24.04.2026 г., 14:22
"Se vale soñar" | Cartón de #SinLínea✍🏻
Hashtags
@SINLINEAMXnoticias · Post #31680 · 23.04.2026 г., 13:47
"EpisODIO de contradicción" | Cartón de #SinLínea✍🏻
Hashtags
@SINLINEAMXnoticias · Post #31342 · 08.04.2026 г., 14:17
"Arrepentido" | Cartón de #SinLínea✍🏻
Hashtags
@SINLINEAMXnoticias · Post #31317 · 07.04.2026 г., 14:50
"Falta... de criterio" | Cartón de #SinLínea✍🏻
Hashtags
@SINLINEAMXnoticias · Post #31226 · 02.04.2026 г., 13:50
"Vamos ganando" | Cartón de #SinLínea✍🏻
Hashtags
@SINLINEAMXnoticias · Post #31178 · 31.03.2026 г., 13:18
"¿Ganamos?" | Cartón de #SinLínea✍🏻
Hashtags
@SINLINEAMXnoticias · Post #31446 · 13.04.2026 г., 18:49
¡Aunque a los medios conservadores no les guste! ☝🏻 🔴 Durante su entrevista para #SinLínea, #Noroña agradeció al medio su labor para contrarrestar la desinformación y campañas en su contra 🙏🏻 👉🏻 Todos los detalles aquí https://youtu.be/rHBkH4r5VJ0📹👀
@SINLINEAMXnoticias · Post #31981 · 05.05.2026 г., 13:15
"Mejicana" | Cartón de #SinLínea✍🏻 #AlessandraRojo
Hashtags