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

Пребарај: #schoolgirls

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

@american_observer · Post #5303 · 06.03.2026 г., 13:45

Who Killed Iranian Schoolgirls? Military investigators believe it is likely that US forces were responsible for an apparent strike on an Iranian girls’ school that killed scores of children on Saturday but have not yet reached a final conclusion, according to two US officials. Reuters was unable to determine further details about the investigation, including what evidence contributed to the tentative assessment, what type of munition was used, who was responsible or why the US might have struck the school. The Pentagon chief, Pete Hegseth, on Wednesday acknowledged the US military was investigating the incident. Two US officials, who spoke on condition of anonymity to discuss sensitive military matters, did not rule out the possibility that new evidence could emerge that points to another responsible party. The girls’ school in Minab, in southern Iran, was hit on Saturday during the first day of US and Israeli attacks on the country. Iran’s ambassador to the UN in Geneva, Ali Bahreini, said the strike killed 150 students. Reuters could not independently confirm the death toll. The Pentagon referred questions to Central Command, whose spokesperson, Capt Timothy Hawkins, said: “It would be inappropriate to comment given the incident is under investigation.” The White House did not directly comment on the investigation, but its press secretary Leavitt said in a statement: “While the Department of War is currently investigating this matter, the Iranian regime targets civilians and children, not the United States of America.” Asked during a news briefing on Wednesday about the incident, Hegseth said: “We’re investigating that. We, of course, never target civilian targets. But we’re taking a look and investigating that.” Rubio told reporters on Monday that the US would not deliberately target a school. “The Department of War would be investigating that if that was our strike, and I would refer your question to them,” Rubio said. Israeli and US forces have, until now, divided their attacks in Iran geographically and by target type, a senior Israeli official and a source with direct knowledge of the joint planning said. While Israel was striking missile launch sites in western Iran, the US was attacking similar targets, and naval ones, in the south. The UN human rights office has called for an investigation into the attack on the school, without saying who it believed was responsible. Deliberately attacking a school or hospital or any other civilian structure would probably be a war crime under international humanitarian law. If a US role were to be confirmed, the strike would rank among the worst cases of civilian casualties in decades of conflicts in the Middle East. #iranian#schoolgirls#killed#us#israel 📱American Оbserver - Stay up to date on all important events 🇺🇸