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

Резултати

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

Пребарај: #niss

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

@addisstandardeng · Post #21055 · 13.01.2026 г., 09:57

News: #Ethiopia intelligence chief visits #Mogadishu amid regional tensions, delivers message from PM Abiy to Somali president Ethiopia’s National Intelligence and Security Service (#NISS) Director General Redwan Hussein paid an unannounced visit to Mogadishu on Tuesday, where he delivered a message from Prime Minister Abiy Ahmed to Somali President Hassan Sheikh Mohamud, amid heightened diplomatic tensions in the Horn of Africa. According to a report by Garowe Online, Redwan met President Mohamud at the presidential palace, Villa Somalia, shortly after arriving in the Somali capital. The contents of the message were not disclosed, and neither the Ethiopian nor Somali governments have issued official statements on the outcome of the meeting. During the visit, Redwan also held talks with Mahad Salad, Director of Somalia’s National Intelligence and Security Agency (NISA),.... https://web.facebook.com/AddisstandardEng/posts/pfbid0Am5bcKZNkxtiRcj5srKd2QLnUYs8BVxGQmvrFKKxcgLdm6rTJV9B9Mm6zku4xtUTl

Addis Standard

@addisstandardeng · Post #22051 · 18.04.2026 г., 06:45

News: Ethiopia Media Authority board reviews progress of digital overhaul, institutional reforms The Board of Directors of the Ethiopian Media Authority (#EMA) has reviewed progress on a series of institutional reforms and digital modernization efforts aimed at strengthening the #Ethiopia’s media regulatory system. The review session was led by #Redwan_Hussein, Director General of the National Intelligence and Security Service (#NISS) and Chairman of the Board of the Ethiopian Media Authority, who assessed the implementation of the Authority’s ongoing 100-day plan, launched in January 2026. During the session, board members examined reports outlining the Authority’s push to integrate modern digital technologies into its regulatory framework. A key presentation focused on infrastructure development underway in partnership with the Ethiopian Artificial Intelligence Institute, aimed at enhancing the efficiency and effectiveness of Read more: https://addisstandard.com/?p=56542