TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #22 · 19 јан.

Заметка начинающим, которые часто сталкиваются с подобной непоняткой. Ситуация следующая, есть список файлов: names = [ 'image.bmp', 'second.txt.bkp', 'data.db', '.config.cfg', 'file.ext.bkp' ] И мы хотим убрать у них окончание ".bkp". Не знаю зачем, пример довольно надуманный) Но суть он показывает, а это главное. Те, кто еще не очень знаком с библиотекой os.path или pathlib, вероятно решат обработать имена как строки. И тут вполне подойдет метод строки strip(). Что делает этот метод? Он отрезает указанные символы по обеим сторонам строки. Если ничего не указать, то убирает невидимые символы (пробелы, табуляции и переносы строк). В нашем случае будет выглядеть вот так: >>> name.strip('.bkp') То есть просим удалить строку '.bkp' по краям имени файла, если таковая есть. Можно применить аналогичный метод rstrip(), чтобы отрезать только справа, но для этого примера используем обычный. >>> for name in names: >>> print(name.strip('.bkp')) image.bm second.txt data.d config.cfg file.ext Хм, что-то не то с нашими именами! Что случилось??? Видим нежелательное переименование в именах, где и близко не было указанной строки '.bkp' А дело всё в том, что данный метод ищет не указанную строку, а указанные символы, и не важно в каком порядке. Для метода strip() строка '.bkp' это не паттерн для поискаа список символов. Потому он отрезал симовол 'p' от '.bmp' и удалил точку из файла '.config.cfg'. Как тогда правильно заменить именно паттерн? Для начинающего можно посоветовать метод строки replace(), который как раз использует для замены указанную строку целиком. В нашем примере заменим её на пустую строку. >>> for name in names: >>> print(name.replace('.bkp', '')) image.bmp second.txt data.db .config.cfg file.ext Уже лучше, но помните, это лишь пример про strip(). Для работы с именами файлов есть способы и более "правильные", дающие однозначно верный результат. Я взял файлы только в качестве примера. Даже replase() тут может сделать не то что ожидаем. Просто впредь будьте внимательны с этим strip(). #basic

Hashtags

Резултати

Пронајдени 1 слични објави

Пребарај: #teachings

当前筛选 #teachings清除筛选
Real Relationship

@RealRelationship · Post #4605 · 03.10.2025 г., 08:04

🫡🤔Hegseth: No Tomahawks to Ukraine According to a source close to Hegseth, despite some media that make hay from the delivery of Tomahawks to Ukraine, the US will not provide Ukraine with intelligence on long-range energy infrastructure targets deep inside Russia, according to reports overnight, a move that would signal a significant change in the White House's support for Kiev. The decision would be an example of the absence of a change in Trump's policy since his comments on social networks towards the end of September that Ukraine could reconquer all the territories occupied by Russia. WSJ articles, citing unnamed US sources, said that the policy had quietly changed before this statement and that the White House wanted NATO allies to follow suit. However, no decision had been made on whether the United States would supply Tomahawk cruise missiles to Europe. Earlier this week, the US Vice President, Vance, said that Trump was considering a request from Kiev for the missiles with a range of 1,500 miles. Western, and in particular American, intelligence in the form of satellite images and other surveillance data is considered an important aid to allow the precise targeting of Russian installations deep within its borders. The focus on energy targets, such as oil refineries, would allow Ukraine to extend an already successful campaign that has hit 21 out of 38 refineries with long-range drone strikes. This has led to fuel shortages in parts of Russia, and on some days it has been estimated that daily production is down by a fifth. Russia said nothing had changed. Peskov, the Kremlin spokesman, said : “The United States regularly transmits intelligence to Ukraine online. The use of the entire infrastructure, including intelligence, of NATO and the United States to collect and transfer intelligence to the Ukrainians is obvious.” Trump has become increasingly irritated with Zelensky over the past month as Kiev has stepped up its attacks on Russian territories and failed to soften its demands for less territory as a precursor to the negotiations. “After getting to know and fully understand the Ukraine/Russia military and economic situation and, after seeing the economic problems it is causing Ukraine, I think that Ukraine, with the support of the European Union, is not in a position to fight and win.” #trump#teachings#targets#infrastructure#russia 📱American Оbserver - Stay up to date on all important events 🇺🇸