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

Пребарај: #geopoliticalrisks

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

@CryptoM · Post #64820 · 10.04.2026 г., 02:23

🚀 Bank of Korea Governor: Iran Conflict Poses Greater Impact on South Korea's Inflation and Growth Than Ukraine Conflict Bank of Korea Governor Lee Chang-yong has stated that the ongoing conflict in Iran is expected to have a more significant impact on South Korea's inflation and economic growth prospects compared to the conflict in Ukraine. According to Jin10, Lee emphasized the potential repercussions of the Iran conflict on the South Korean economy, highlighting concerns over inflationary pressures and growth challenges. The governor's remarks underscore the heightened economic risks associated with geopolitical tensions in the region, which could affect South Korea's economic stability and policy decisions. #SouthKorea#BankOfKorea#IranConflict#UkraineConflict#Inflation#EconomicGrowth#GeopoliticalRisks#Economy

Crypto M - Crypto News

@CryptoM · Post #64798 · 10.04.2026 г., 00:31

🚀 Asian Development Bank Forecasts Economic Slowdown Amid Middle East Tensions The Asian Development Bank (ADB) released its "2026 Asian Development Outlook" report on April 10, highlighting increased geopolitical risks due to conflicts in the Middle East. According to Jin10, the report indicates that developing economies in the Asia-Pacific region are facing growing economic downturn risks. The ADB forecasts that if the Middle East situation stabilizes early, the economic growth rate for these economies will slow from 5.4% in 2025 to 5.1% in both 2026 and 2027. Inflation is expected to rise from 3.0% in 2025 to 3.6% in 2026 and 3.4% in 2027. However, if the turmoil in the Middle East persists until the third quarter of this year, the economic growth rate for the Asia-Pacific developing economies could slow further to 4.7% in 2026 and 4.8% in 2027, with inflation rising to 5.6% in 2026. #AsianDevelopmentBank#EconomicSlowdown#MiddleEastTensions#GeopoliticalRisks#AsiaPacific#EconomicForecast#Inflation#2026Outlook#DevelopingEconomies

Crypto M - Crypto News

@CryptoM · Post #65169 · 11.04.2026 г., 15:05

🚀 Middle East Credit Markets Attract Investors Amid Iran Conflict Credit investors are increasingly eyeing opportunities in the Middle East as the ongoing conflict in Iran disrupts lending markets. Bloomberg posted on X that this situation may present a chance for fund managers prepared to navigate geopolitical risks. The war has led to significant shifts in the region's financial landscape, prompting investors to reassess their strategies and explore new avenues for growth. As tensions continue, the potential for lucrative investments in the Middle East remains a focal point for those willing to engage with the complexities of the geopolitical environment. #MiddleEast#CreditMarkets#IranConflict#Investors#GeopoliticalRisks#FinancialLandscape#InvestmentOpportunities#FundManagers#LendingMarkets#MiddleEastInvestments