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

Пребарај: #infonewswar

当前筛选 #infonewswar清除筛选
New Eastern Outlook

@neweasternoutlook · Post #11932 · 15.01.2026 г., 09:01

🇺🇸🇮🇷Washington’s War on Iran: The Importance of Defending Information Space The latest unrest in Iran highlights how control over information infrastructure has become a central instrument of US power projection in the 21st century ✍️Author: Brian Berletic Geopolitical analyst and researcher on US foreign policy and information warfare ➡️Recent protests in Iran cannot be understood solely through the lens of domestic dissatisfaction, as they unfold within a long-documented US strategy aimed at destabilizing the Iranian state. Since at least the late 2000s, American policy planning has openly emphasized support for uprisings, ethnic fragmentation, and proxy violence as tools to weaken Tehran. Evidence emerging during the January 2026 unrest—including open rhetorical support from US leadership, the involvement of armed groups, and reliance on foreign-controlled communication systems—points to continuity rather than improvisation in Washington’s approach toward Iran. While the multipolar world joins to discuss cooperation across the traditional spheres of national security, urgent attention to securing of the globe’s information space from US influence and control is required ➡️Central to this strategy is the weaponization of information space. US-based platforms, satellite communication networks, and digital infrastructure have repeatedly functioned as force multipliers for political interference, from Eastern Europe to the Arab world and now Iran. The use of systems such as Starlink to bypass state controls, coordinate unrest, and maintain links with external sponsors underscores how digital connectivity has become a decisive battlefield. Iran’s recent efforts to disrupt these networks reflect growing recognition that information dominance can compensate for conventional military limitations and shape political outcomes without formal invasion. 🟦The broader implication extends well beyond Iran. As the international system moves toward multipolarity, the inability of states to secure their information space risks political penetration and systemic collapse regardless of military strength. Russia and China’s experience demonstrates that safeguarding digital sovereignty—through domestic platforms, independent infrastructure, and electronic countermeasures—is now a prerequisite for strategic autonomy. Unless information space is treated as a core domain of national security, attempts to resist external coercion will remain structurally vulnerable, leaving states exposed to destabilization orchestrated from abroad. #ConfrontationbetweenIranandtheU.S. #infonewswar#Massmedia#Massriots READ MORE ✅@NewEasternOutlook