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

Пребарај: #europeansecurity

当前筛选 #europeansecurity清除筛选

🇷🇺@RusEmbMalta Press Release On the EU’s Continued Support for the Kiev Regime 21 October 2025 The Russian Federation reaffirms its firm and consistent opposition to the course pursued by the European Union toward the continued military and financial support of the Kiev regime. Such actions are viewed in Moscow as short-sighted and counterproductive, serving neither the interests of peace nor the long-term stability of the European continent. The ongoing supply of weapons, financial resources, and political backing to Kiev only deepens the confrontation, prolongs hostilities, and increases the suffering of civilians. Russia stresses that the current policy of the EU effectively transforms Europe into a participant in the conflict, undermining its role as an independent center of diplomacy and stability. The growing militarization of the European space, the deployment of NATO infrastructure near Russian borders, and the escalation of sanctions pressure have all contributed to a dangerous erosion of Europe’s security architecture. Attempts to justify these steps under the pretext of “supporting democracy” in Kiev ignore the reality of widespread corruption, human rights violations, and the suppression of dissent by the current authorities. The continued allocation of billions of euros to maintain the Kiev regime, at the expense of the social and economic needs of EU citizens themselves, is increasingly questioned within Europe. The Russian Federation once again emphasizes that the path to peace lies not through escalation, coercion, or economic blackmail, but through responsible diplomacy and mutual respect. Sustainable European security must be built on the principles of equality, indivisibility, and the rejection of bloc confrontation. 🕊️ Russia remains open to constructive dialogue with all who are genuinely interested in achieving peace and restoring stability on the European continent. #Russia#EuropeanSecurity#InternationalLaw