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

Резултати

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

Пребарај: #irantoday

当前筛选 #irantoday清除筛选
Press TV Shows

@PresstvPrograms · Post #5595 · 31.01.2026 г., 11:02

🔺"This is our country, and we will solve our problem" On January 14, 2026, Iranians took to the streets to pay tribute to the martyrs who lost their lives during the recent unrest. Watch in full #IranToday @PresstvPrograms

Hashtags

Press TV Shows

@PresstvPrograms · Post #5594 · 31.01.2026 г., 10:03

🔺“There was a coordinated plan in this regard” Abdolmotahar Mohammadkhani states that there were coordinated attacks on bus depots, resulting in damage to eleven metro stations and complete destruction of more than 120 bus stations. Watch in full #IranToday @PresstvPrograms

Hashtags

Press TV Shows

@PresstvPrograms · Post #5593 · 31.01.2026 г., 09:03

🔺Cultural heritage and tourism suffered significant damage during the recent foreign-backed riots in Iran. Watch in full #IranToday @PresstvPrograms

Hashtags

Press TV Shows

@PresstvPrograms · Post #5592 · 31.01.2026 г., 08:00

🔺“Serious damage was inflicted on public property” Abdolmotahar Mohammadkhani indicates that the unrest during the three nights resulted in significant damage in the capital, severely affecting public property and urban management infrastructure. Watch in full #IranToday @PresstvPrograms

Hashtags

Press TV Shows

@PresstvPrograms · Post #5591 · 31.01.2026 г., 07:03

🔺The foreign-backed riots in Iran caused severe destruction across the country, affecting various sectors, including education, emergency services, and retail. Watch in full #IranToday @PresstvPrograms

Hashtags

Press TV Shows

@PresstvPrograms · Post #5590 · 30.01.2026 г., 21:32

🔺“These were not ordinary protesters expressing economic grievances” Surveillance cameras in the city reveal that the attackers could set a store ablaze in less than 30 seconds and vandalize banks in just under 1 minute, Abdolmotahar Mohammadkhani says. Watch in full #IranToday @PresstvPrograms

Hashtags

Press TV Shows

@PresstvPrograms · Post #5589 · 30.01.2026 г., 20:32

🔺Foreign-backed rioters caused severe damage to Iran’s social, economic, and religious infrastructure, destroying religious sites and facilities. Watch in full #IranToday @PresstvPrograms

Hashtags

Press TV Shows

@PresstvPrograms · Post #5588 · 30.01.2026 г., 19:30

🔺“This riot was different” Seyed Misagh Akhtar highlights that the recent riot in Iran was notably different from previous ones due to the organized presence of trained individuals intent on inciting violence and destruction. Watch in full #IranToday @PresstvPrograms

Hashtags

Press TV Shows

@PresstvPrograms · Post #5587 · 30.01.2026 г., 18:30

🔺Social media played a significant role in inciting teenagers and young adults to engage in riots and destructive behavior, culminating in deadly confrontations that led to an unprecedented scale of violence and casualties among police and civilians. Watch in full #IranToday @PresstvPrograms

Hashtags

Press TV Shows

@PresstvPrograms · Post #5586 · 30.01.2026 г., 17:31

🔺“They failed to achieve their goals” Mostafa Beheshti, a former MEK member, compares the recent riots in Iran to those in the 1980s, emphasizing manufactured victimhood by the MEK, including the killing of their own senior members. Watch in full #IranToday @PresstvPrograms

Hashtags

Press TV Shows

@PresstvPrograms · Post #5585 · 28.01.2026 г., 09:06

🔺According to Mohammadreza Rasekhi, a bus driver from Tehran, a crowd of armed rioters smashed his bus with knives and metal pipes, threatened him, and set it on fire, moving with professional skill even across the roof. Watch in full #IranToday @PresstvPrograms

Hashtags

123•••10•••1415
ПретходнаСтраница 1 од 15Следна