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

Резултати

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

Пребарај: #melaniatrump

当前筛选 #melaniatrump清除筛选
International News

@intnewsagency · Post #9129 · 02.04.2026 г., 19:37

Melania Trump Facilitates Return of Ukrainian Children to Families For the fourth time, U.S. First Lady Melania Trump has helped speed up the reunification of children separated by the Ukraine conflict. According to the White House, six children currently in Russia will soon return to their families in Ukraine, with another child rejoining loved ones by month’s end. This initiative marks a significant humanitarian effort amid the ongoing crisis. #Ukraine#Children#HumanitarianAid#MelaniaTrump The main news of Russia and the world ishere.

Crypto M - Crypto News

@CryptoM · Post #65174 · 11.04.2026 г., 16:11

🚀 Melania Token Struggles Despite Media Coverage of White House Denial Melania Trump's recent denial of any connections to Jeffrey Epstein at the White House on April 9 did not positively impact the MELANIA token's market performance. According to NS3.AI, the token continued to trade at approximately $0.10, remaining about 99% below its peak of $13.70 in January 2025. Despite widespread media coverage of her remarks, CryptoSlate data indicates that the token experienced a decline of over 3% in the past 24 hours. Additionally, Melania Trump urged Congress to conduct public hearings for Epstein's victims. #MelaniaToken#JeffreyEpstein#WhiteHouse#Crypto#MarketPerformance#NS3AI#CryptoSlate#MelaniaTrump#PublicHearings#EpsteinVictims

Crypto M - Crypto News

@CryptoM · Post #64758 · 09.04.2026 г., 19:37

🚀 Melania Trump Denies Connection to Jeffrey Epstein, Calls for Congressional Hearing First Lady Melania Trump has publicly denied any association with Jeffrey Epstein, the financier who faced numerous allegations of sexual misconduct before his death. Bloomberg posted on X that Melania Trump is advocating for a congressional hearing to provide a platform for survivors of Epstein's abuse to share their experiences. This call for action comes amid ongoing discussions about Epstein's network and the impact of his actions on victims. The First Lady's statement aims to clarify her position and support those affected by the scandal. #MelaniaTrump#JeffreyEpstein#CongressionalHearing#SexualAbuse#VictimSupport#Scandal#Bloomberg#FirstLady#EpsteinCase