TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #309 · 2 фев.

Метод строки split() разделяет строку на несколько строк по указанному символу >>> "a_b_c".split('_') ['a', 'b', 'c'] Можно указать максимальное количество разделений >>> "a_b_c".split('_', 1) ['a', 'b_c'] Или резать с другой стороны с помощью rsplit() (right split) >>> "a_b_c".rsplit('_', 1) ['a_b', 'c'] А что будет если оставить аргументы пустыми? >>> "a_b_c".split() ['a_b_c'] Получаем список с одним элементом, потому что по умолчанию используется пробельный символ. >>> "a b c".split() ['a', 'b', 'c'] То есть это равнозначно такому вызову? >>> "a b c".split(" ") ['a', 'b', 'c'] Кажется да, но нет! Давайте попробуем добавить пробелов между буквами >>> "a b c".split(" ") ['a', '', '', 'b', '', '', 'c'] И вот картина уже не так предсказуема 😕 А вот что будет по умолчанию >>> "a b c".split() ['a', 'b', 'c'] Всё снова красиво! 🤩 По умолчанию в качестве разделителя используется любой пробельный символ, будь то табуляция или новая строка. Включая несколько таких символов идущих подряд. А также игнорируются пробельные символы по краям строки. >>> "a\t b\n c ".split() ['a', 'b', 'c'] Аналогичный способ можно собрать с помощью регулярного выражения. Но пробелы по краям строки придется обрабатывать дополнительно. >>> import re >>> re.split(r"\s+", ' a b c '.strip()) ['a', 'b', 'c'] Здесь тоже можно указать количество разделений >>> re.split(r"\s+", 'a b c', 1) ['a', 'b c'] А что если мы хотим написать красиво, то есть split() без аргументов, но при этом указать количество разделений? В этом случае первым аргументом передаём None >>> "a\n b c".split(None, 1) ['a', 'b c'] Данный метод не учитывает строки с пробелами, взятые в кавычки 'a "b c" '.split() ['a', '"b', 'c"'] Но для таких случаев есть другие способы. #tricks#basic

Резултати

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

Пребарај: #hightech

当前筛选 #hightech清除筛选
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 🇺🇸