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

Резултати

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

Пребарај: #inflationexpectations

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

@CryptoM · Post #65014 · 10.04.2026 г., 14:02

🚀 U.S. Inflation Rate Expectations for April Show Slight Increase The initial estimate for the U.S. inflation rate expectations over a five to ten-year period in April was reported at 3.4%, according to Jin10. This figure slightly missed the anticipated rate of 3.5% but showed an increase from the previous value of 3.20%. The data reflects ongoing concerns about inflationary pressures in the U.S. economy. #USInflation#InflationExpectations#Economy#USEconomy#InflationRate#Jin10

Crypto M - Crypto News

@CryptoM · Post #65011 · 10.04.2026 г., 13:52

🚀 Upcoming Release of Key US Economic Indicators In ten minutes, the United States will release several important economic indicators, including the February factory orders month-on-month rate, the preliminary April University of Michigan Consumer Sentiment Index, and the preliminary one-year inflation rate expectations. According to Jin10, these data points are closely watched by analysts and investors as they provide insights into the economic health and inflation outlook of the country. #USEconomy#EconomicIndicators#FactoryOrders#ConsumerSentiment#InflationExpectations#USDataRelease

Crypto M - Crypto News

@CryptoM · Post #64507 · 09.04.2026 г., 04:23

🚀 Oil Price Surge and Currency Depreciation: Will Asia Face a 1997 Financial Crisis Again? The recent surge in oil prices, coupled with currency depreciation and increased capital outflow risks, has raised concerns about a potential repeat of the 1997 Asian financial crisis. According to Jin10, these developments have also heightened inflation expectations across the region. However, economists suggest that the similarities to the past crisis may be superficial. They argue that the current economic conditions and financial systems in Asia are more robust and better equipped to handle such challenges compared to the situation in 1997. Despite the alarming indicators, experts believe that the region's improved economic fundamentals and regulatory frameworks could mitigate the risks of a similar financial upheaval. #OilPriceSurge#CurrencyDepreciation#AsianFinancialCrisis#1997Crisis#CapitalOutflow#InflationExpectations#EconomicFundamentals#FinancialSystems#AsiaEconomy