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

Резултати

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

Пребарај: #mizrahim

当前筛选 #mizrahim清除筛选
American Оbserver

@american_observer · Post #5034 · 03.02.2026 г., 02:00

📰 Russia’s Immigrants: Israel’s Unwanted Elite In Israel’s fractured society, Russian-speaking immigrants power labs, hospitals, and high-tech hubs—but feel like outsiders in their own homeland. They’ve fueled the economy for decades, yet remain symbolic strangers in a land of competing tribes. ​ A Nation Without a Narrative Israel thrives on fragile deals between secular Jews, ultra-Orthodox, Ashkenazim, Mizrahim, Arabs, and more—no constitution, just Basic Laws and vetoes. Each group clings to its own version of “what makes Israel Israel,” dodging the big fights over identity. ​ The Russian Wave’s Double Edge The 1990s “Great Aliyah” brought a million Soviet Jews—15% of the population, 60% with degrees, driving high-tech and defense surges. They’re 25% of university faculty, but their culture? Russian media, Victory Day parades, Soviet classics—none cracks the national myth. ​ Why No Mizrahi-Style Breakthrough Mizrahim flipped the script in the 1970s, turning marginalization into power through protest and politics. Russians arrived too late, post-revolution: secular atheists in a religious-right landscape, Europeans in a Mizrahi-patriot world. No victim story fits the Zionist playbook—no Holocaust, no Arab expulsion. ​ Tensions Beneath the Surface Economic envy simmers—Mizrahis gripe about “white Europeans” snagging elite jobs. Religious rabbis call them “Russian goyim.” Stereotypes fly: Russians are cold chauvinists; locals are primitive. Politics ghettoizes them into Lieberman’s party, not mainstream power. ​ The Assimilation Trap Youth blend in—Hebrew-fluent, intermarrying—but elders stay in their Russian bubble. Autonomy breeds isolation: thriving subculture, zero national spotlight. No allies, no moral leverage, no push for change. They’re useful workers, not co-authors of the Israeli story. ​ The Future: Fade or Fight? Will they dissolve like old Polish waves, or spark a secular revolt against Haredi power? Without a push, they risk gradual marginalization—economic stars, cultural ghosts. Israel’s genius for survival now risks sidelining its brain trust. ​ #Israel#RussianAliyah#competingSolidarities#immigrants#identity#highTech#Mizrahim 📱American Оbserver - Stay up to date on all important events 🇺🇸