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

Пребарај: #lassafeverawareness

当前筛选 #lassafeverawareness清除筛选

PRESS STATEMENT: Urgent State Action Needed as Lassa Fever Cases Rise The Nigeria Centre for Disease Control and Prevention (NCDC) has called for urgent and strengthened state level action as Lassa fever cases continue to rise during the current peak dry season (November–April). With confirmed cases reported across multiple states and increasing infections among healthcare workers, NCDC emphasizes the need for full activation of State Incident Management Systems, strict enforcement of Infection Prevention and Control (IPC) measures, adequate supply of PPE, improved surveillance, and stronger community engagement. State governments are urged to prioritise outbreak response funding, protect healthcare workers, and close identified operational gaps contributing to preventable deaths. 🔗 Read the full press statement here: https://ncdc.gov.ng/news/534/2-march-2026-%7C-ncdc-calls-for-strengthened-state-level-action-as-lassa-fever-cases-rise-during-peak-season Members of the public are advised to: ✅Maintain clean environments ✅Prevent rodent infestation ✅Store food safely ✅Practice good hand hygiene ✅Seek early medical care at the nearest health facility if symptoms occur and avoid self medication. Lassa fever is treatable, and early detection saves lives. For inquiries or to report suspected cases, call the NCDC toll-free line: 6232. Stay informed. Stay protected. Stay healthy. #LassaFeverAwareness#PressRelease#NCDCNigeria

#Lassa fever is preventable, awareness is your first line of defense. ✅Avoid contact with rodents and their droppings ✅Store food properly ✅Maintain good hygiene by washing your hands regularly and keeping your surroundings clean and rodents free Seek medical care early if you notice symptoms such as : ✔️Fever ✔️Weakness ✔️Severe headache ✔️Cough ✔️Sore throat Stay informed, Stay Safe!! Prevent. Detect early. Save lives. #LassaFeverAwareness#PublicHealth#NCDCNigeria