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

Резултати

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

Пребарај: #usirantensions

当前筛选 #usirantensions清除筛选
Crypto M - Crypto News

@CryptoM · Post #65411 · 13.04.2026 г., 05:59

🚀 Oil Prices Surge Above $105 Amid U.S.-Iran Tensions Oil prices have climbed above $105 following the breakdown of U.S.-Iran discussions in Islamabad, which has reignited concerns of potential conflict in global energy markets. According to NS3.AI, the Kobeissi Letter reported that Google search interest for 'price of oil' has reached an unprecedented level, surpassing the peaks of 2022 and 2008 by 300%. #OilPrices#USIranTensions#EnergyMarkets#GlobalEconomy#CrudeOil#MarketVolatility#OilCrisis

Crypto M - Crypto News

@CryptoM · Post #65224 · 12.04.2026 г., 04:24

🚀 U.S. President Trump Considers Maritime Blockade Against Iran On April 12, U.S. President Donald Trump posted on Truth Social about a potential maritime blockade against Iran. According to BlockBeats, Trump suggested this measure if Iran does not make concessions. The statement highlights ongoing tensions between the United States and Iran, with the possibility of escalating actions if diplomatic solutions are not reached. #Trump#Iran#MaritimeBlockade#USIranTensions#Diplomacy#TruthSocial#TrumpStatement#IranConcessions

Crypto M - Crypto News

@CryptoM · Post #65180 · 11.04.2026 г., 16:54

🚀 Bitcoin Market Divides Amid Ongoing U.S.-Iran Tensions The Bitcoin market is experiencing a notable division amid the ongoing U.S.-Iran geopolitical tensions, which have persisted for approximately six weeks. According to ChainCatcher, the market is split between passive buyers, such as those involved with Strategy and spot ETFs, who continue to accumulate, and entities like whales, mining companies, and some sovereign holders, who are reducing their holdings. On the selling side, there is a clear trend: whale addresses holding between 1,000 and 10,000 BTC have shifted from net buying to significant net selling, with their holdings changing from an increase of about 200,000 BTC to a decrease of 188,000 BTC this year. Publicly listed mining companies, under pressure from high costs, have also been selling off, with weekly sales exceeding 19,000 BTC. Additionally, sovereign holders like Bhutan have reduced their Bitcoin reserves by approximately 70% since October 2024. Analysts note that despite market sentiment reaching extreme fear levels, Bitcoin's price has remained within the $65,000 to $73,000 range. This stability suggests that the price floor is primarily supported by a few institutional buyers. The current market's buying base is narrowing, and future trends will depend on whether institutional capital inflows can continue and break through key resistance levels. #Bitcoin#Cryptocurrency#BitcoinMarket#USIranTensions#CryptoTrading#BitcoinWhales#InstitutionalInvestors#BitcoinETFs#CryptoAnalysis#MarketTrends#BTC