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

Резултати

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

Пребарај: #algae

当前筛选 #algae清除筛选
Interesting Planet 🌍

@interesting_planet_facts · Post #960 · 24.10.2025 г., 18:11

🌎 Off the coast of Australia, the mysterious "pink lakes" like Lake Hillier owe their color to the algae Dunaliella salina, which produce red pigments in salty environments. Lake Hillier’s pink hue remains stable even when bottled, due to the unique chemistry of its saline water. ✨ #ocean⚡#mystery⚡#algae 👉subscribe Interesting Planet 👉more Channels ​

Interesting Planet 🌍

@interesting_planet_facts · Post #588 · 19.08.2025 г., 13:22

🌎 Red tides sometimes turn the ocean a rusty red or brown—caused by massive blooms of algae packed with pigments. These blooms can release toxins that harm fish and even impact local air quality, making ocean color changes a sign of dramatic ecological shifts. ✨ #ocean⚡#algae⚡#pigments 👉subscribe Interesting Planet

Interesting Planet 🌍

@interesting_planet_facts · Post #1305 · 20.02.2026 г., 12:11

🌎 Red rain fell in the Indian state of Kerala in 2001, coloring streets and clothing. Scientists found the cause was airborne spores from local algae cells. Some showers were bright red for up to two months. ✨ #phenomena⚡#weather⚡#algae 👉subscribe Interesting Planet 👉more Channels ​