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

Резултати

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

Пребарај: #centralbanks

当前筛选 #centralbanks清除筛选
Venture Village Wall 🦄

@venturevillagewall · Post #4115 · 10.02.2025 г., 16:00

Gold Surpasses Bitcoin in 2025 Returns Gold prices hit $2900 per ounce, outpacing Bitcoin's 4% return this year with a 10% rise. Central banks are aggressively buying gold amid trade war fears, seeking safe-haven assets. See market trends and forecasts: source. #Bitcoin#Gold#CentralBanks#MarketTrends#SafeHaven#Investment#Finance#EconomicNews#Trading#Crypto#VC #2025

Crypto M - Crypto News

@CryptoM · Post #64700 · 09.04.2026 г., 14:59

🚀 IMF Chief Georgieva: Central Banks Cannot Afford Uncontrolled Inflation IMF Managing Director Kristalina Georgieva has emphasized that central banks worldwide are unable to bear the consequences of uncontrolled inflation. According to Jin10, Georgieva highlighted the critical need for monetary authorities to maintain vigilance and take necessary measures to prevent inflation from spiraling out of control. She stressed that failure to manage inflation effectively could lead to severe economic repercussions, affecting global financial stability. Georgieva's remarks underscore the importance of coordinated efforts among central banks to address inflationary pressures and ensure sustainable economic growth. #IMF#CentralBanks#Inflation#MonetaryPolicy#EconomicStability#GlobalEconomy#FinancialStability#KristalinaGeorgieva#EconomicGrowth

Crypto M - Crypto News

@CryptoM · Post #64859 · 10.04.2026 г., 05:05

🚀 PRECIOUS METALS | Morgan Stanley Questions Gold's Role as a Risk Management Tool According to Jin10, Morgan Stanley has raised concerns about gold's traditional role as a risk management tool following six weeks of significant volatility in commodity prices. Amy Gower, a metals and mining strategist at Morgan Stanley, stated that gold is currently behaving more like a risk asset rather than a safe haven. Typically, gold should serve as a diversification tool within investment portfolios, but this is not currently the case. Gower acknowledged that it is 'normal' for gold to weaken following a shock, as investors often seek liquidity. However, she pointed out that gold prices are increasingly influenced by the trading activities of major holders such as central banks and ETFs. #preciousmetals#gold#riskmanagement#morganstanley#commodityprices#investmentportfolios#metals#mining#centralbanks#ETFs#XAUT