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

Пребарај: #euphrates

当前筛选 #euphrates清除筛选
Eva Karene Bartlett

@EvaKarene_Bartlett · Post #29427 · 14.01.2026 г., 07:39

❗️#Syria: Brutal Turkish Aggression on Syrian Territory Amid Arab Silence In the early hours of today, #Turkish Bayraktar armed drones violated the sovereign airspace of the Syrian Republic and carried out heavy strikes on three populated Syrian towns and villages that are not border areas and it's is located west of the #Euphrates . These attacks exposed Syrian civilians to serious danger and constitute a blatant assault on Syria's sovereignty and on the dignity and safety of #Syrian citizens. These violations, contrary to international law and Syrian law, took place amid complete silence from the al-Jolani terrorist regime. Observers describe this silence as indicating complicity between the Jolani authority and Turkey's ruling AKP Party, which occupies parts of Syrian territory. The attacks were also met with Arab silence, a lack of condemnation, and widespread Arab media blackout. The Syrian Democratic Forces (#SDF) stated in official statements that the aggression included: Two separate drone strikes on the town of Maskanah, and Another strike on the village of Al‑Bu‘asi, in the countryside of Al‑Tabqa, Raqqa Governorate. These attacks represent a dangerous escalation and a clear act of external military aggression against civilians inside Syrian territory.

Eva Karene Bartlett

@EvaKarene_Bartlett · Post #29447 · 15.01.2026 г., 07:18

🚨🚨Al-Jolani is preparing for a new assault and an attack on #SDF–controlled areas in the E. #Aleppo countryside Syria’s state-run Syrian News Channel published a map announcing an “8-hour humanitarian corridor” for residents of the towns of #DeirHafir and #Maskanah (west of the #Euphrates, eastern Aleppo countryside), both of which are under the control of the Syrian Democratic Forces (SDF). The corridor would lead toward areas controlled by al-Jolani’s forces. Observers warn that civilians who refuse to leave their homes may be subjected to shelling inside their houses, allegedly with the backing of Hakan Fidan, and in the absence of a clear condemnation from U.S. envoy Thomas Barrack, who met last night with Turkish Foreign Minister Hakan Fidan. In recent days, the towns of Maskanah and Deir Hafir have been targeted by artillery shelling and heavy machine-gun fire by al-Jolani’s forces. In addition, at dawn today, January 14, the towns were attacked by Turkish drones. The SDF has released several statements, the latest issued about an hour ago, reporting a Turkish Bayraktar drone strike on the village of al-Bu‘asi in the countryside of Tabqa.