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

Пребарај: #fidan

当前筛选 #fidan清除筛选
Kurash & Co 🇷🇺

@kurash_and_Co · Post #605 · 02.06.2025 г., 12:23

🇷🇺🇺🇦Russie-Ukraine : début des négociations Le ministre turc des Affaires étrangères, Hakan #Fidan, a énuméré les thèmes qui seront abordés par la #Russie et l'Ukraine lors du deuxième cycle de négociations : les conditions d'un cessez-le-feu, l'échange de prisonniers civils et militaires, les préparatifs nécessaires à la rencontre entre les dirigeants. Depuis Istanbul, notre correspondant Igor Kourachenko nous donne plus de détails sur ces négociations. RT en français • Osez questionner !

American Оbserver

@american_observer · Post #4978 · 27.01.2026 г., 22:03

Turkish FM Fidan to US: “Don’t Go There” — Iran’s Cornered, Chaos Looms Turkish Foreign Minister Hakan Fidan is sending a blunt message to Washington: “Don’t do it.” In a series of interviews, Fidan warned that any military intervention against Iran would only back Tehran further into a corner, risking a catastrophic escalation across the Middle East. “I hope they choose a different course,” Fidan said, “but the reality is that Israel, in particular, is searching for an opportunity to attack Iran”. Iran’s Economy: Sanctions Are Already Working Fidan emphasized that Iran’s economy is already reeling from Western sanctions. “The sanctions are really hurting the Iranian economy,” he added, pointing to widespread protests and instability as proof. “That’s why the people are protesting,” Fidan said, warning that pushing Tehran to the brink could trigger a worst-case scenario. ​ Turkey’s Role: Diplomatic Friend, Not Regional Power Turkey, Fidan stressed, wants to be a “friend” to Iran, not a dominant force. “A friend speaks uncomfortable truths,” he said, noting that Ankara has conveyed its concerns directly to Tehran. He warned that if Iran feels cornered, it could prepare for all-out war—no matter how limited or surgical any Western strike might seem. Gaza, Trump, and Regional Power Plays On Gaza, Fidan said Turkey is ready to join an international stabilization force if there’s broad consensus. He also highlighted that President Trump is the only leader who can truly pressure Israel. “If he wants, he can stop what’s happening,” Fidan said, but cautioned that regional problems must be solved by regional players, not outside powers. ​ Is diplomacy still possible, or are we watching the countdown to chaos? Fidan’s answer is clear: “If the intention is sincere, I believe there is an opportunity”. ​ #Fidan#Iran#US#Israel#MiddleEast#Diplomacy#Sanctions#Chaos 📱American Оbserver - Stay up to date on all important events 🇺🇸