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

Резултати

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

Пребарај: #regnounito

当前筛选 #regnounito清除筛选
Ultimora.net - POLITICS 24

@Ultimorapolitics24 · Post #52038 · 27.02.2026 г., 15:53

🇬🇧#RegnoUnito – I Verdi vincono le elezioni suppletive a Gorton e Denton, collegio periferico di Manchester. I laburisti dimezzano il proprio sostegno, superati da Reform UK. I Verdi hanno puntato sull’elettorato musulmano (circa il 30%), mentre il partito di Farage ha prevalso nei quartieri operai bianchi. @UltimoraPolitics24

Hashtags

White House Watch

@Whitehousewatch · Post #17434 · 05.02.2026 г., 18:08

#RegnoUnito, #Trump: “I have had very productive discussions with Prime Minister Keir Starmer about the Island of Diego Garcia. It is the site of a major U.S. Military Base, strategically situated in the middle of the Indian Ocean and, therefore, of great importance to the National Security of the United States. We have the most powerful Military in the World. Our Military Operations, over the course of the last year, were successful because of the strength of our warfighters, modern capability of our equipment and, very importantly, the strategic location of our Military Bases for staging, and other reasons. I understand that the deal Prime Minister Starmer has made, according to many, the best he could make. However, if the lease deal, sometime in the future, ever falls apart, or anyone threatens or endangers U.S. operations and forces at our Base, I retain the right to Militarily secure and reinforce the American presence in Diego Garcia. Let it be known that I will never allow our presence on a Base as important as this to ever be undermined or threatened by fake claims or environmental nonsense. Thank you for your attention to this matter! PRESIDENT DONALD J. TRUMP”

Libertà è ragione

@libertaeragione · Post #4211 · 04.07.2024 г., 12:17

#Elezioni#RegnoUnito Oggi si vota nel Regno Unito! Abbiamo creato delle schede in cui potete vedere i partiti principali e dove si posizionano ideologicamente. 🔽 https://tinyurl.com/yxezy7kf @OsservatorioEsteri

123•••10•••20•••2425
ПретходнаСтраница 1 од 25Следна