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 слични објави

Пребарај: #terminal

当前筛选 #terminal清除筛选
Libreware

@libreware · Post #1413 · 14.02.2025 г., 17:47

kitty The fast, feature-rich, GPU based #terminal emulator Uses GPU and SIMD vector CPU instructions for best in class Uses threaded rendering for absolutely minimal latency Performance tradeoffs can be tuned Capable Scriptable Composable Cross-platform Innovative To get started see Quickstart. https://sw.kovidgoyal.net/kitty/ With software, such as "Kitty", it is possible to read documents, images and other graphical formats with these software: https://github.com/dsanson/termpdf.py http://www.kraxel.org/blog/linux/fbida/ https://github.com/itsjunetime/tdf It means, that we no longer need GTK+ (which dropped support for X11), Qt and other graphical toolkits in order to have a full operational computer.

Hashtags

sudo recast

@sudo_recast · Post #204 · 23.05.2022 г., 17:51

Warp 從上個月開始面向林檎電腦用戶公測。很快,很現代智慧,雖然搶佔掉了許多原來的 shell 設定。UI 很精緻。 #terminal

Hashtags

The Devs

@thedevs · Post #1734 · 01.05.2020 г., 18:28

qrcp, transfer files over wifi from your computer to your mobile device by scanning a QR code without leaving the terminal. #tools#terminal @thedevs https://kutt.it/fycGgm

The Devs

@thedevs · Post #1325 · 08.12.2018 г., 14:49

eDEX-UI, a science fiction terminal emulator designed for large touchscreens that runs on all major OSs. #tools#terminal @thedevs https://kutt.it/IaR1au

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