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

Резултати

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

Пребарај: #idp

当前筛选 #idp清除筛选
Addis Standard

@addisstandardeng · Post #21894 · 31.03.2026 г., 11:35

#Op_ed: Lives on Hold: Humanitarian crisis deepens amid stalled peace in #Tigray More than three years after the Pretoria Peace Agreement, Tigray reflects a fragile peace shaped by stalled implementation and a deepening humanitarian crisis, writes Gebremichael Negash. He notes, “The human cost of delayed implementation is no longer abstract; it is being counted in deaths.” Although active conflict has largely subsided, well over five million people still need emergency assistance, with nearly 891,000 displaced across 146 #IDP camps. At the same time, restrictions on cash, fuel, and aid continue to worsen conditions. The path forward, Gebremichael argues, is clear: restore services, ensure humanitarian access, and enable safe returns. “What remains is a choice: act now… or allow delay to deepen a crisis already measured in lives lost.” https://addisstandard.com/?p=56200

Addis Standard

@addisstandardeng · Post #21979 · 08.04.2026 г., 11:13

#Op_ed: Peace on Paper, Suffering in Practice: #Tigray’s hidden post-war emergency While active fighting in Tigray has ceased since the 2022 #Pretoria peace agreement, the author argues that “a structural and systemic war—one waged not with bullets but through deliberate under-resourcing and institutional paralysis—continues to claim lives.” Civil servants remain unpaid, schools are closed or converted into #IDP camps and military bases, and the healthcare system is collapsing, leaving pregnant women and malnourished children vulnerable. Cash shortages and fuel restrictions fuel black markets and inflation, while farmers cannot transport crops. The author emphasizes that “true peace cannot be declared” until salaries, education, and healthcare are restored. https://addisstandard.com/?p=56397

❗️IELTS на бумаге отменён в Узбекистане С 11 июля 2025 года бумажный формат IELTS полностью прекращается. Причина — возможные утечки заданий и рост мошенничества. Теперь экзамен можно сдать только на компьютере. Что делать зарегистрированным участникам, как перенести или вернуть оплату — в нашей статье. https://yep.uz/ru/2025/07/ielts-uzbekistan-otmena-bumazhnogo-formata/ #IELTS#Узбекистан#АнглийскийЯзык#IDP#BritishCouncil#IELTSнаКомпьютере#Образование#IELTS2025#экзамены