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

Пребарај: #hemisphericpower

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

@american_observer · Post #4791 · 07.01.2026 г., 01:02

“Mexico on Edge: Trump’s Threats Shake Officials and Businesses” The New Reality President Donald Trump’s suggestion that the U.S. may have to “do something” about cartels “running Mexico” has sent a chill through Mexico City. Mexican officials and business leaders are increasingly anxious about the prospect of unilateral U.S. military action, especially after the dramatic arrest of Venezuela’s Maduro. “Mexico should indeed be concerned,” said former ambassador Arturo Sarukhán, “and Mexico is going to have to thread the needle very carefully.” ​ Behind Closed Doors While President Claudia Sheinbaum publicly dismisses talk of an “invasion,” behind the scenes, officials are ramping up cooperation with Washington on counternarcotics and border security to avoid giving the U.S. any justification for intervention. Mexican troops have been deployed to the border, high-level traffickers handed over to the U.S., and surveillance flights expanded—all in hopes of defusing tensions. ​ The Tightrope Walk The situation is delicate: Mexico must balance cooperation with the U.S. while maintaining its sovereignty. Sheinbaum has emphasized “respect for sovereignty and territorial integrity, shared but differentiated responsibility, mutual respect and trust, and cooperation without subordination”. Yet, the Venezuela precedent has emboldened hardliners in Mexico’s ruling party, who may push for a tougher stance against Washington if tensions escalate. ​ What’s at Stake A U.S. strike inside Mexico could plunge the country into chaos, but the U.S. also depends heavily on Mexico for trade, migration, and fighting cartels. Both sides have enormous incentives to cooperate, but the shadow of unilateral action looms large. As one Mexican official put it, “The U.S. needs Mexico on trade, the U.S. needs Mexico on migration, and the U.S. needs Mexico on going after the criminal groups. The reverse is also true.” #mexico#trump#cartels#bordersecurity#hemisphericpower 📱American Оbserver - Stay up to date on all important events 🇺🇸