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

Резултати

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

Пребарај: #archivos

当前筛选 #archivos清除筛选
BotsGram®

@botsgram_cu · Post #3076 · 17.10.2020 г., 15:31

¿Que puede hacer este bot? @RenameArchive_bot Con este bot podrás renombrar archivos de Telegram Idioma: inglés (Visto en @botsgram_cu) #renombrar#archivos

BotsGram®

@botsgram_cu · Post #4272 · 21.08.2021 г., 17:26

¿Que puede hacer este bot? @uploadgrammebot Este es el bot oficial de uploadgram.me ¡Envíale un archivo y te dará su enlace directo de descarga! Idioma: inglés (Visto en @botsgram_cu) #enlaces#descarga#archivos

BotsGram®

@botsgram_cu · Post #4335 · 05.09.2021 г., 13:58

¿Que puede hacer este bot? @DegooUploaderBot Con este bot puede cargar archivos de Telegram y enlaces de descarga directa a su almacenamiento en la nube degoo. Idiomas: inglés (Visto en @botsgram_cu) #archivos#degoo

BotsGram®

@botsgram_cu · Post #3759 · 02.04.2021 г., 15:06

¿Que puede hacer este bot? @UnzipRobot Extrae archivos comprimidos dentro de Telegram con soporte permanente de miniaturas. Idiomas: Inglés (Visto en @botsgram_cu) #unzip#archivos#enlaces

BotsGram®

@botsgram_cu · Post #3073 · 17.10.2020 г., 00:27

¿Que puede hacer este bot? @cloudy_files_bot Este es un bot de servicio en la nube. Le permite administrar archivos y descargarlos. Idiomas: inglés (Visto en @botsgram_cu) #descargas#nube#archivos

BotsGram®

@botsgram_cu · Post #2961 · 12.08.2020 г., 01:29

¿Que puede hacer este bot? @tg_renamer_bot Este es un bot de cambio de nombre de archivo de telegram personalizado, con soporte de miniatura Idiomas: inglés (visto en @botsgram_cu) #archivos#renombrar#miniaturas

BotsGram®

@botsgram_cu · Post #4992 · 28.04.2024 г., 21:33

¿Qué puede hacer este bot? @complete_pdf_bot Si eres alguien que pasa mucho tiempo trabajando con archivos PDF de Telegram, 𝐈 💔 𝐏𝐃𝐅 es una herramienta imprescindible. Este bot simplifica a los usuarios convertir archivos hacia y desde formato PDF, editar, fusionar, dividir, comprimir e incluso convertir imágenes a PDF o viceversa. #pdf#imagenes#archivos (Visto en @BotsGram_Cu)

BotsGram®

@botsgram_cu · Post #4971 · 10.04.2024 г., 21:59

¿Qué puede hacer este bot? @FILEs_COMPRESSOR_BOT Este bot le permite comprimir archivos en archivos zip y administrarlos. Idioma: Inglés #archivos#compresion#zip (Visto en @BotsGram_Cu)

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