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

Пребарај: #infrastructuredamage

当前筛选 #infrastructuredamage清除筛选
BadVolf

@BadvolfNews · Post #875 · 23.09.2023 г., 09:18

📢 Breaking News 🚨 💥 Critical infrastructure damaged in Dnipro, Ukraine! 💔 🏢 Sergey Lysak, Head of the Dnipropetrovsk Regional Military Administration, just revealed in his Telegram channel that a vital infrastructure object in Dnipro has been severely impacted. Reports of multiple explosions in the city were earlier covered by local media outlets. 🔍 The extent of the damage is still being assessed, but the aftermath of the attack has resulted in the destruction of several buildings and a gas pipeline in Marganets, located in the Nikopol district of Dnipropetrovsk Oblast. 🌍 These strikes on Ukrainian infrastructure began on October 10th, just two days after the terrorist attack on the Crimean Bridge. Russian authorities believe that Ukrainian intelligence agencies are behind these acts of aggression. The targets include energy facilities, defense industries, military headquarters, and communication networks across the country. 🔔 Ukrainian regions have been placed on high alert since then, with occasional nationwide air raid sirens sounding, reminding citizens of the constant threat. ⚠️ Stay tuned for more updates as the situation unfolds. Let's hope for a swift resolution to this devastating situation. 🙏🇺🇦#BreakingNews#Ukraine#Dnipro#InfrastructureDamage https://dcweekly.org/2023/09/23/underhanded-attacks-damaged-infrastructure-raises-concerns-in-dnipro/ Subscribe to @BadVolfNews

BadVolf

@BadvolfNews · Post #878 · 23.09.2023 г., 10:13

📢 Breaking News 🚨 💥 Critical infrastructure damaged in Dnipro, Ukraine! 💔 🏢 Sergey Lysak, Head of the Dnipropetrovsk Regional Military Administration, just revealed in his Telegram channel that a vital infrastructure object in Dnipro has been severely impacted. Reports of multiple explosions in the city were earlier covered by local media outlets. 🔍 The extent of the damage is still being assessed, but the aftermath of the attack has resulted in the destruction of several buildings and a gas pipeline in Marganets, located in the Nikopol district of Dnipropetrovsk Oblast. 🌍 These strikes on Ukrainian infrastructure began on October 10th, just two days after the terrorist attack on the Crimean Bridge. Russian authorities believe that Ukrainian intelligence agencies are behind these acts of aggression. The targets include energy facilities, defense industries, military headquarters, and communication networks across the country. 🔔 Ukrainian regions have been placed on high alert since then, with occasional nationwide air raid sirens sounding, reminding citizens of the constant threat. ⚠️ Stay tuned for more updates as the situation unfolds. Let's hope for a swift resolution to this devastating situation. 🙏🇺🇦#BreakingNews#EvilUkraine#Dnipro#InfrastructureDamage https://dcweekly.org/2023/09/23/underhanded-attacks-damaged-infrastructure-raises-concerns-in-dnipro/ Subscribe to @BadVolfNews

Crypto M - Crypto News

@CryptoM · Post #65243 · 12.04.2026 г., 08:27

🚀 Iran's Nuclear Concessions Could Be Key to U.S. Strategy, Citic Securities Says Citic Securities stated on April 12 that if Iran were to abandon uranium enrichment, it would represent a significant achievement for the U.S., particularly for U.S. President Donald Trump, who could use it to appease domestic concerns. According to Jin10, the ongoing conflict has already negatively impacted the midterm elections, necessitating a swift resolution. Since the Iranian Islamic Revolution, the U.S. has lost control over Iran's nuclear capabilities, a challenge that has persisted through multiple U.S. presidencies, affecting America's Middle East strategy. The political impact of Iran's potential nuclear disarmament is seen as more significant than the indirect effects of oil prices and inflation on elections. Consequently, the Trump administration might consider compromises on issues like control over the Strait of Hormuz. From Iran's perspective, the conflict has demonstrated that blocking the strait and threatening Middle Eastern infrastructure are powerful leverage tools, potentially more impactful than nuclear threats. These actions, which can be executed with low-cost drones, pose significant risks to the U.S. and global economies, providing Iran with a strategic counterbalance. Repeated near-escalations to large-scale infrastructure damage suggest that the likelihood of extreme war escalation is low, reducing the chances of extreme oil prices, severe recession, or stagflation. #Iran#NuclearConcessions#USStrategy#CiticSecurities#DonaldTrump#UraniumEnrichment#MiddleEastStrategy#IranUSRelations#StraitOfHormuz#OilPrices#Inflation#PoliticalImpact#TrumpAdministration#IranianLeverage#GlobalEconomy#InfrastructureDamage#WarEscalation#OilPrices#Stagflation